import { cancelOperations, convertGifToVideo } from './index.ts'; /** * The API object that exposes the video conversion functions to the main thread. */ declare const api: { cancelOperations: typeof cancelOperations; convertGifToVideo: typeof convertGifToVideo; }; /** * Type export for use with wrap() on the main thread. */ export type WorkerAPI = typeof api; export {}; //# sourceMappingURL=worker.d.ts.map