@nitrogenbuilder/core
Version:
CMS Agnostic Page Builder for React projects
14 lines (13 loc) • 525 B
TypeScript
import { BuilderModule, PropOther } from '../../../@types/settings.js';
import './CtrlBoolean.scss';
type ControlProps = {
updateProps: (id: string, path: string, value: any) => void;
deleteProp: (path: string) => void;
currMod: BuilderModule;
updatePath: string;
prop: PropOther;
value: any;
inheritVal?: boolean;
};
export default function CtrlBoolean({ currMod, updatePath, prop, value, inheritVal, deleteProp, updateProps, }: ControlProps): import("react/jsx-runtime").JSX.Element;
export {};