Files
clawbot/skills/remotion-prompt-video/node_modules/remotion/dist/cjs/watch-static-file.d.ts
T

11 lines
400 B
TypeScript

import type { StaticFile } from './get-static-files';
type WatcherCallback = (newData: StaticFile | null) => void;
export declare const WATCH_REMOTION_STATIC_FILES = "remotion_staticFilesChanged";
export type WatchRemotionStaticFilesPayload = {
files: StaticFile[];
};
export declare const watchStaticFile: (fileName: string, callback: WatcherCallback) => {
cancel: () => void;
};
export {};