UNPKG

@fesjs/fes-design

Version:
12 lines (11 loc) 501 B
import type { PropType } from 'vue'; import type { ExtractPublicPropTypes } from '../_util/interface'; export type CheckboxValue = string | number | boolean; export declare const checkboxProps: { readonly modelValue: BooleanConstructor; readonly indeterminate: BooleanConstructor; readonly value: PropType<CheckboxValue>; readonly label: PropType<string | number>; readonly disabled: BooleanConstructor; }; export type CheckboxProps = ExtractPublicPropTypes<typeof checkboxProps>;