comic-plus
Version:
<p align="center"> <img width="200px" src="./logo.png"/> </p>
18 lines (16 loc) • 644 B
TypeScript
import { ExtractPropTypes, PropType } from 'vue';
import { ComicSize } from '../../../utils';
export declare const radioProps: {
readonly modelValue: PropType<string | number>;
readonly label: StringConstructor;
readonly value: PropType<string | number>;
readonly disabled: BooleanConstructor;
readonly activeColor: StringConstructor;
readonly size: PropType<ComicSize>;
};
export type RadioProps = ExtractPropTypes<typeof radioProps>;
export declare const radioEmits: {
"update:modelValue": (val: string | number) => boolean;
change: (value: boolean) => boolean;
};
export type RadioEmits = typeof radioEmits;