@ssplib/react-components
Version:
SSP React Components
14 lines (13 loc) • 447 B
TypeScript
export declare function ToggleVisibility({ invert, hasCheckValue, ...props }: {
switchId: string;
unregisterNameList: string[];
invert?: boolean;
hasCheckValue: boolean;
}): JSX.Element;
export declare function SwitchWatch({ invert, checkValue, ...props }: {
children: JSX.Element | JSX.Element[];
switchId: string;
unregisterNameList: string[];
invert?: boolean;
checkValue?: string | number;
}): JSX.Element;