Add .gitignore to exclude all node packages and lock files
This commit is contained in:
Generated
Vendored
+18
@@ -0,0 +1,18 @@
|
||||
import type { MutableRefObject } from 'react';
|
||||
export type PlayableMediaTag = {
|
||||
play: (reason: string) => void;
|
||||
id: string;
|
||||
};
|
||||
type CurrentTimePerComposition = Record<string, number>;
|
||||
export declare const persistCurrentFrame: (time: CurrentTimePerComposition) => void;
|
||||
export declare const getInitialFrameState: () => CurrentTimePerComposition;
|
||||
export declare const getFrameForComposition: (composition: string) => number;
|
||||
export declare const useTimelinePosition: () => number;
|
||||
export declare const useTimelineSetFrame: () => ((u: React.SetStateAction<Record<string, number>>) => void);
|
||||
type PlayingReturnType = readonly [
|
||||
boolean,
|
||||
(u: React.SetStateAction<boolean>) => void,
|
||||
MutableRefObject<boolean>
|
||||
];
|
||||
export declare const usePlayingState: () => PlayingReturnType;
|
||||
export {};
|
||||
Reference in New Issue
Block a user