UNPKG

easyest-xqp

Version:

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