@video-editor/protocol 0.0.1-beta.2 → 0.0.1-beta.3

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +8 -8
  2. package/package.json +2 -2
package/dist/index.d.ts CHANGED
@@ -112,7 +112,7 @@ export declare function createVideoProtocolManager(protocol: IVideoProtocol): {
112
112
  readonly endTime: number;
113
113
  readonly segmentType: "frames";
114
114
  readonly extra?: {
115
- readonly [x: string]: Readonly<unknown>;
115
+ readonly [x: string]: never;
116
116
  } | null | undefined;
117
117
  } | {
118
118
  readonly type: "image";
@@ -162,7 +162,7 @@ export declare function createVideoProtocolManager(protocol: IVideoProtocol): {
162
162
  readonly endTime: number;
163
163
  readonly segmentType: "frames";
164
164
  readonly extra?: {
165
- readonly [x: string]: Readonly<unknown>;
165
+ readonly [x: string]: never;
166
166
  } | null | undefined;
167
167
  } | {
168
168
  readonly type: "3D";
@@ -211,7 +211,7 @@ export declare function createVideoProtocolManager(protocol: IVideoProtocol): {
211
211
  readonly endTime: number;
212
212
  readonly segmentType: "frames";
213
213
  readonly extra?: {
214
- readonly [x: string]: Readonly<unknown>;
214
+ readonly [x: string]: never;
215
215
  } | null | undefined;
216
216
  })[];
217
217
  readonly isMain?: boolean | undefined;
@@ -267,7 +267,7 @@ export declare function createVideoProtocolManager(protocol: IVideoProtocol): {
267
267
  readonly endTime: number;
268
268
  readonly url?: string | undefined;
269
269
  readonly extra?: {
270
- readonly [x: string]: Readonly<unknown>;
270
+ readonly [x: string]: never;
271
271
  } | null | undefined;
272
272
  }[];
273
273
  }[];
@@ -309,7 +309,7 @@ export declare function createVideoProtocolManager(protocol: IVideoProtocol): {
309
309
  readonly startTime: number;
310
310
  readonly endTime: number;
311
311
  readonly extra?: {
312
- readonly [x: string]: Readonly<unknown>;
312
+ readonly [x: string]: never;
313
313
  } | null | undefined;
314
314
  }[];
315
315
  }[];
@@ -328,7 +328,7 @@ export declare function createVideoProtocolManager(protocol: IVideoProtocol): {
328
328
  readonly startTime: number;
329
329
  readonly endTime: number;
330
330
  readonly extra?: {
331
- readonly [x: string]: Readonly<unknown>;
331
+ readonly [x: string]: never;
332
332
  } | null | undefined;
333
333
  }[];
334
334
  }[];
@@ -344,7 +344,7 @@ export declare function createVideoProtocolManager(protocol: IVideoProtocol): {
344
344
  readonly endTime: number;
345
345
  readonly url?: string | undefined;
346
346
  readonly extra?: {
347
- readonly [x: string]: Readonly<unknown>;
347
+ readonly [x: string]: never;
348
348
  } | null | undefined;
349
349
  }[];
350
350
  }[];
@@ -361,7 +361,7 @@ export declare function createVideoProtocolManager(protocol: IVideoProtocol): {
361
361
  readonly endTime: number;
362
362
  readonly url?: string | undefined;
363
363
  readonly extra?: {
364
- readonly [x: string]: Readonly<unknown>;
364
+ readonly [x: string]: never;
365
365
  } | null | undefined;
366
366
  }[];
367
367
  }[];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@video-editor/protocol",
3
3
  "type": "module",
4
- "version": "0.0.1-beta.2",
4
+ "version": "0.0.1-beta.3",
5
5
  "exports": {
6
6
  ".": {
7
7
  "import": "./dist/index.js"
@@ -24,7 +24,7 @@
24
24
  "ajv-keywords": "^5.1.0",
25
25
  "immer": "^11.0.0",
26
26
  "opfs-tools": "^0.7.4",
27
- "@video-editor/shared": "0.0.1-beta.2"
27
+ "@video-editor/shared": "0.0.1-beta.3"
28
28
  },
29
29
  "scripts": {
30
30
  "build:types": "vue-tsc --declaration --emitDeclarationOnly",