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

13 lines
415 B
TypeScript

import type { StaticFile } from 'remotion';
export declare const initPublicFolderWatch: ({ publicDir, onUpdate, staticHash, }: {
publicDir: string;
remotionRoot: string;
onUpdate: () => void;
staticHash: string;
}) => void;
export declare const fetchFolder: ({ publicDir, staticHash, }: {
publicDir: string;
staticHash: string;
}) => void;
export declare const getFiles: () => StaticFile[];