UNPKG

t-fighting-design

Version:

Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.

14 lines (9 loc) 366 B
export type { CheckboxGroupPropsType } from './props' export type CheckboxGroupLabelType = string | number | boolean export type CheckboxGroupSizeType = 'large' | 'middle' | 'small' | 'mini' export interface ChangeEventInterface { (val: CheckboxGroupLabelType): void } export interface CheckboxGroupChangeInterface { (val: CheckboxGroupLabelType): boolean }