UNPKG

@kelvininc/ui-components

Version:
11 lines (10 loc) 408 B
import { EventEmitter } from '../../stencil-public-runtime'; import { IRadio } from '../radio/radio.types'; export interface ICheckbox extends IRadio { /** (optional) If `true` the checkbox is with indeterminate state. Default: false */ indeterminate?: boolean; } export interface ICheckboxEvents { /** Emitted when the checkbox checked state changes */ clickCheckbox: EventEmitter<Event>; }