easyest-xqp
Version:
14 lines (13 loc) • 388 B
TypeScript
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>;