comic-plus
Version:
<p align="center"> <img width="200px" src="./logo.png"/> </p>
14 lines (12 loc) • 506 B
TypeScript
import { ExtractPropTypes, PropType } from 'vue';
import { ComicSize } from '../../../utils';
export declare const radioGroupProps: {
readonly modelValue: PropType<string | number>;
readonly size: PropType<ComicSize>;
};
export type RadioGroupProps = ExtractPropTypes<typeof radioGroupProps>;
export declare const radioGroupEmits: {
"update:modelValue": (val: string | number) => boolean;
change: (val: string | number) => boolean;
};
export type RadioGroupEmits = typeof radioGroupEmits;