@cliquify.me/types 4.0.8 → 4.0.9
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 +7 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -176,6 +176,12 @@ export interface ICompositionAnimation {
|
|
|
176
176
|
ease?: (t: number) => number;
|
|
177
177
|
easing: string;
|
|
178
178
|
delay: number;
|
|
179
|
+
details?: {
|
|
180
|
+
fonts: {
|
|
181
|
+
fontFamily: string;
|
|
182
|
+
url: string;
|
|
183
|
+
}[];
|
|
184
|
+
};
|
|
179
185
|
}
|
|
180
186
|
export interface ITrackItemBase {
|
|
181
187
|
id: string;
|
|
@@ -421,6 +427,7 @@ export interface ITemplate extends ITrackItemBase {
|
|
|
421
427
|
transitionIds: string[];
|
|
422
428
|
size: ISize;
|
|
423
429
|
tracks: ITrack[];
|
|
430
|
+
structure: ItemStructure[];
|
|
424
431
|
}
|
|
425
432
|
export interface ICaption extends ITrackItemBase {
|
|
426
433
|
type: "caption";
|