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

9 lines
333 B
TypeScript

type State = {
checkerboard: boolean;
setCheckerboard: (cb: (prevState: boolean) => boolean) => void;
};
export declare const persistCheckerboardOption: (option: boolean) => void;
export declare const loadCheckerboardOption: () => boolean;
export declare const CheckerboardContext: import("react").Context<State>;
export {};