@video-editor/shared 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 +1 -7
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -231,15 +231,9 @@ export declare interface IVideoProtocol {
231
231
  tracks: TrackUnion[];
232
232
  }
233
233
 
234
- export declare type SegmentExtra<T extends ITrackType> = T extends keyof SegmentExtraRegistry ? SegmentExtraRegistry[T] : unknown;
234
+ export declare type SegmentExtra<T extends ITrackType> = T extends keyof SegmentExtraRegistry ? SegmentExtraRegistry[T] : Record<string, never>;
235
235
 
236
236
  export declare interface SegmentExtraRegistry {
237
- frames: Record<string, unknown>;
238
- text: Record<string, unknown>;
239
- image: Record<string, unknown>;
240
- audio: Record<string, unknown>;
241
- effect: Record<string, unknown>;
242
- filter: Record<string, unknown>;
243
237
  }
244
238
 
245
239
  export declare type SegmentUnion = TrackTypeMapSegment[ITrackType];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@video-editor/shared",
3
3
  "type": "module",
4
- "version": "0.0.1-beta.2",
4
+ "version": "0.0.1-beta.3",
5
5
  "description": "video editor shared libs",
6
6
  "author": "",
7
7
  "license": "ISC",