UNPKG

remotion

Version:

Make videos programmatically

8 lines (7 loc) 203 B
export type DelayPlaybackHandle = { unblock: () => void; }; export type UseBufferState = { delayPlayback: () => DelayPlaybackHandle; }; export declare const useBufferState: () => UseBufferState;