UNPKG

@fesjs/fes-design

Version:
11 lines (10 loc) 438 B
import type { PropType } from 'vue'; import type { ExtractPublicPropTypes } from '../_util/interface'; export type RadioValue = string | number | boolean; export declare const radioProps: { readonly modelValue: BooleanConstructor; readonly value: PropType<RadioValue>; readonly label: PropType<string | number>; readonly disabled: BooleanConstructor; }; export type RadioProps = ExtractPublicPropTypes<typeof radioProps>;