@fesjs/fes-design
Version:
fes-design for PC
16 lines (15 loc) • 505 B
TypeScript
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>;