UNPKG

616 BTypeScriptView Raw
1import React from 'react';
2export declare type SequenceContextType = {
3 cumulatedFrom: number;
4 relativeFrom: number;
5 parentFrom: number;
6 durationInFrames: number;
7 id: string;
8};
9export declare const SequenceContext: React.Context<SequenceContextType | null>;
10export declare type SequenceProps = {
11 children: React.ReactNode;
12 from: number;
13 durationInFrames?: number;
14 name?: string;
15 layout?: 'absolute-fill' | 'none';
16 showInTimeline?: boolean;
17 showLoopTimesInTimeline?: number;
18};
19export declare const Sequence: React.FC<SequenceProps>;
20//# sourceMappingURL=index.d.ts.map
\No newline at end of file