@remotion/studio
Version:
APIs for interacting with the Remotion Studio
9 lines (8 loc) • 363 B
TypeScript
type State = {
editorZoomGestures: boolean;
setEditorZoomGestures: (cb: (prevState: boolean) => boolean) => void;
};
export declare const persistEditorZoomGesturesOption: (option: boolean) => void;
export declare const loadEditorZoomGesturesOption: () => boolean;
export declare const EditorZoomGesturesContext: import("react").Context<State>;
export {};