UNPKG

@fesjs/fes-design

Version:
16 lines (15 loc) 505 B
import type { PropType } from 'vue'; import type { RadioValue } from '../radio/props'; import type { ExtractPublicPropTypes } from '../_util/interface'; export declare const radioButtonProps: { readonly disabled: { readonly type: BooleanConstructor; }; readonly value: { readonly type: PropType<RadioValue>; }; readonly label: { readonly type: PropType<string | number>; }; }; export type RadioButtonProps = ExtractPublicPropTypes<typeof radioButtonProps>;