Files
clawbot/skills/remotion-prompt-video/node_modules/@remotion/studio-server/dist/file-watcher.d.ts
T

10 lines
254 B
TypeScript

type FileChangeType = 'created' | 'deleted' | 'changed';
export declare const installFileWatcher: ({ file, onChange, }: {
file: string;
onChange: (type: FileChangeType) => void;
}) => {
exists: boolean;
unwatch: () => void;
};
export {};