UNPKG

naive-ui

Version:

A Vue 3 Component Library. Fairly Complete, Theme Customizable, Uses TypeScript, Fast

7 lines (6 loc) 293 B
export type OnUpdateChecked = (value: string & number & boolean, e: MouseEvent | KeyboardEvent) => void; export type OnUpdateCheckedImpl = (value: string | number | boolean, e: MouseEvent | KeyboardEvent) => void; export interface CheckboxInst { focus: () => void; blur: () => void; }