UNPKG

@remotion/player

Version:

React component for embedding a Remotion preview into your app

6 lines (5 loc) 185 B
export type CancellablePromise = { promise: Promise<unknown>; cancel: () => void; }; export declare const cancellablePromise: (promise: Promise<unknown>) => CancellablePromise;