Files
story-studio/remotion/node_modules/@remotion/renderer/dist/make-cancel-signal.d.ts
2026-02-21 10:33:18 +01:00

15 lines
429 B
TypeScript

type Callback = () => void;
export type CancelSignal = (callback: Callback) => void;
export declare const makeCancelSignal: () => {
cancelSignal: CancelSignal;
cancel: () => void;
};
export declare const cancelErrorMessages: {
renderMedia: string;
renderFrames: string;
renderStill: string;
stitchFramesToVideo: string;
};
export declare const isUserCancelledRender: (err: unknown) => boolean;
export {};