UNPKG

remotion

Version:

Make videos programmatically

19 lines (18 loc) 492 B
import type { FC } from 'react'; import type { NonceHistory } from './nonce.js'; export type TFolder = { name: string; parent: string | null; nonce: NonceHistory; stack: string | null; }; type FolderContextType = { folderName: string | null; parentName: string | null; }; export declare const FolderContext: import("react").Context<FolderContextType>; export declare const Folder: FC<{ readonly name: string; readonly children: React.ReactNode; }>; export {};