@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.
- package/dist/index.d.ts +1 -7
- 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] :
|
|
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];
|