UNPKG

gd-sprest-js

Version:

SharePoint 2013/Online js components.

20 lines (19 loc) 510 B
import { Fabric, ICheckBoxProps, IComponentProps } from "."; /** * CheckBox Group */ export interface ICheckBoxGroup { /** Returns the checkbox elements. */ get(): Array<Fabric.ICheckBox>; /** Returns the checkbox value. */ getValues(): Array<boolean>; } /** * CheckBox Properties */ export interface ICheckBoxGroupProps extends IComponentProps { /** The change event */ onChange?: (checked: boolean) => void; /** The checkbox properties */ props?: Array<ICheckBoxProps>; }