UNPKG

easyest-xqp

Version:

14 lines (13 loc) 400 B
import type { ExtractPropTypes } from "vue"; export interface CheckboxOption { value: string | number; label: string; disabled?: boolean; } export declare const checkboxProps: { readonly checkboxs: { readonly type: import("vue").PropType<CheckboxOption[]>; readonly default: () => never[]; }; }; export type CheckboxProps = ExtractPropTypes<typeof checkboxProps>;