fix: radio type

refactor-checkbox
tangjinzhou 2021-12-28 16:45:48 +08:00
parent 346393f81e
commit 2ee9cd324b
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ const RadioGroupOptionTypes = tuple('default', 'button');
export type RadioGroupOption = typeof RadioGroupOptionTypes[number];
export type RadioGroupChildOption = {
label: any;
label?: any;
value: any;
disabled?: boolean;
};