@remotion/player
Version:
React component for embedding a Remotion preview into your app
8 lines (7 loc) • 322 B
TypeScript
import type { CancellablePromise } from './cancellable-promise.js';
declare const useCancellablePromises: () => {
appendPendingPromise: (promise: CancellablePromise) => void;
removePendingPromise: (promise: CancellablePromise) => void;
clearPendingPromises: () => void[];
};
export { useCancellablePromises };