unbikit 0.9.0 → 0.10.1
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.
- package/dist/unbikit.d.ts +4 -3
- package/dist/unbikit.js +584 -720
- package/package.json +23 -23
package/dist/unbikit.d.ts
CHANGED
|
@@ -255,16 +255,17 @@ declare class BikDecoder {
|
|
|
255
255
|
*/
|
|
256
256
|
reset(): void;
|
|
257
257
|
/**
|
|
258
|
-
*
|
|
258
|
+
* Read and parse the headers of a BIK video. If successful, return an instance of
|
|
259
259
|
* {@link BikDecoder} for decoding the rest of the video from the data source.
|
|
260
260
|
* @param source Data source that will provide the encoded video data.
|
|
261
261
|
* @returns Decoder instance. Use {@link BikDecoder.header} to access the parsed headers.
|
|
262
262
|
*/
|
|
263
|
-
static open_(source: Blob | File | URL | Request): Promise<BikDecoder>;
|
|
263
|
+
static open_(this: void, source: Blob | File | URL | Request): Promise<BikDecoder>;
|
|
264
264
|
}
|
|
265
265
|
/**
|
|
266
|
-
*
|
|
266
|
+
* Read and parse the headers of a BIK video. If successful, return an instance of
|
|
267
267
|
* {@link BikDecoder} for decoding the rest of the video from the data source.
|
|
268
|
+
* @function
|
|
268
269
|
* @param source Data source that will provide the encoded video data.
|
|
269
270
|
* @returns Decoder instance. Use {@link BikDecoder.header} to access the parsed headers.
|
|
270
271
|
*/
|