@theoplayer/extended 11.6.0 → 11.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -749,7 +749,7 @@ interface Ad {
749
749
  */
750
750
  type: AdType;
751
751
  /**
752
- * The identifier of the creative.
752
+ * The identifier of the ad.
753
753
  *
754
754
  * @remarks
755
755
  * <br/> - Available when the {@link Ad.readyState} is `'ready'`.
@@ -1616,7 +1616,7 @@ interface Ads extends EventDispatcher<AdsEventMap> {
1616
1616
  * The type of ad source:
1617
1617
  * <br/> - `'vast'`: The source is a VAST resource.
1618
1618
  * <br/> - `'vmap'`: The source is a VMAP resource.
1619
- * <br/> - `'adrule'`: The source is a Ad Rule resource.
1619
+ * <br/> - `'adrule'`: The source is an Ad Rule resource.
1620
1620
  *
1621
1621
  * @remarks
1622
1622
  * <br/> - An ad rule is a simplified VMAP alternative only available in the Google IMA integration.
@@ -1675,7 +1675,7 @@ interface AdDescription {
1675
1675
  * @remarks
1676
1676
  * <br/> - Important: This should *not* be an array of sources.
1677
1677
  * <br/> - VPAID support is limited to the `'google-ima'` integration.
1678
- * <br/> - Not specifying this property should only happen when using a third party ad integration that uses an other system of specifying which ads to schedule
1678
+ * <br/> - Not specifying this property should only happen when using a third party ad integration that uses another system of specifying which ads to schedule.
1679
1679
  */
1680
1680
  sources?: string | AdSource;
1681
1681
  /**
@@ -13215,7 +13215,17 @@ interface WebAudio {
13215
13215
  * @public
13216
13216
  */
13217
13217
  interface Base64Util {
13218
+ /**
13219
+ * Encodes the given bytes as base64.
13220
+ *
13221
+ * This is equivalent to [`Uint8Array.toBase64()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array/toBase64).
13222
+ */
13218
13223
  encode(value: Uint8Array): string;
13224
+ /**
13225
+ * Decodes the given base64-encoded string as bytes.
13226
+ *
13227
+ * This is equivalent to [`Uint8Array.fromBase64()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array/fromBase64).
13228
+ */
13219
13229
  decode(value: string): Uint8Array;
13220
13230
  }
13221
13231
  /**