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

7 lines
263 B
TypeScript

import { type CancelSignal } from './make-cancel-signal';
export declare const succeedOrCancel: <T>({ happyPath, cancelSignal, cancelMessage, }: {
happyPath: Promise<T>;
cancelSignal: CancelSignal | undefined;
cancelMessage: string;
}) => Promise<T>;