Files
story-studio/remotion/node_modules/@remotion/webcodecs/dist/io-manager/make-timeout-promise.d.ts
2026-02-21 10:33:18 +01:00

10 lines
294 B
TypeScript

import type { WebCodecsController } from '../webcodecs-controller';
export declare const makeTimeoutPromise: ({ label, ms, controller, }: {
label: () => string;
ms: number;
controller: WebCodecsController | null;
}) => {
timeoutPromise: Promise<void>;
clear: () => void;
};