UNPKG

ideaz-element

Version:

<p align="center"> <a href="" target="_blank" rel="noopener noreferrer"> <img src="./docs/public/logo.svg" alt="Ideaz Element" width="180" style="width: 180px;" /> </a> </p>

13 lines (11 loc) 381 B
import { OptionsItem } from './common'; export type CheckboxType = 'checkbox' | 'checkbox-button'; export interface CheckboxOptionsItem extends OptionsItem { trueLabel?: string | number; falseLabel?: string | number; border?: boolean; size?: 'large' | 'default' | 'small'; indeterminate?: boolean; type?: CheckboxType; change?: (value: any) => void; }