UNPKG

remotion

Version:

Make videos programmatically

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