UNPKG

@remotion/renderer

Version:

Render Remotion videos using Node.js or Bun

7 lines (6 loc) 263 B
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>;