@remotion/studio
Version:
APIs for interacting with the Remotion Studio
11 lines (10 loc) • 363 B
TypeScript
import React from 'react';
import type { JSONPath } from './zod-types';
import type { UpdaterFunction } from './ZodSwitch';
export declare const ZodBooleanEditor: React.FC<{
readonly jsonPath: JSONPath;
readonly value: boolean;
readonly setValue: UpdaterFunction<boolean>;
readonly onRemove: null | (() => void);
readonly mayPad: boolean;
}>;