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

14 lines
469 B
TypeScript

export declare const subscribeToFileExistenceWatchers: ({ file: relativeFile, remotionRoot, clientId, }: {
file: string;
remotionRoot: string;
clientId: string;
}) => {
exists: boolean;
};
export declare const unsubscribeFromFileExistenceWatchers: ({ file, remotionRoot, clientId, }: {
file: string;
remotionRoot: string;
clientId: string;
}) => void;
export declare const unsubscribeClientFileExistenceWatchers: (clientId: string) => void;