UNPKG

immuto-react

Version:
8 lines (7 loc) 295 B
/// <reference types="react" /> import { Property } from "immuto"; import { FormElementProps } from "./FormElementProps"; export interface CheckBoxProps extends FormElementProps { binding: Property<boolean | undefined>; } export declare function CheckBox(props: CheckBoxProps): JSX.Element;