@remotion/studio
Version:
APIs for interacting with the Remotion Studio
8 lines (7 loc) • 304 B
TypeScript
import { type StaticFile } from './get-static-files';
type WatcherCallback = (newFiles: StaticFile[]) => void;
export declare const WATCH_REMOTION_STATIC_FILES = "remotion_staticFilesChanged";
export declare const watchPublicFolder: (callback: WatcherCallback) => {
cancel: () => void;
};
export {};