UNPKG

t-fighting-design

Version:

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

25 lines (24 loc) 767 B
import type { ExtractPropTypes } from 'vue'; import type { CheckboxLabelType } from './interface'; export declare const Props: { readonly modelValue: { readonly type: BooleanConstructor; readonly default: () => boolean; }; readonly label: { readonly type: StringConstructor; readonly default: () => string; }; readonly disabled: { readonly type: BooleanConstructor; readonly default: () => boolean; }; readonly border: { readonly type: BooleanConstructor; readonly default: () => boolean; }; }; export declare const Emits: { readonly 'update:modelValue': (val: CheckboxLabelType) => boolean; }; export declare type CheckboxPropsType = ExtractPropTypes<typeof Props>;