Files
story-studio/remotion/node_modules/@remotion/studio-server/dist/file-watcher.d.ts
2026-02-21 10:33:18 +01:00

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 {};