comic-plus
Version:
<p align="center"> <img width="200px" src="./logo.png"/> </p>
35 lines (33 loc) • 1.55 kB
TypeScript
declare function __VLS_template(): {
default?(_: {}): any;
};
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
readonly modelValue: import('vue').PropType<string | number>;
readonly label: StringConstructor;
readonly value: import('vue').PropType<string | number>;
readonly disabled: BooleanConstructor;
readonly activeColor: StringConstructor;
readonly size: import('vue').PropType<import('../../../utils').ComicSize>;
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
change: (value: boolean) => void;
"update:modelValue": (val: string | number) => void;
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
readonly modelValue: import('vue').PropType<string | number>;
readonly label: StringConstructor;
readonly value: import('vue').PropType<string | number>;
readonly disabled: BooleanConstructor;
readonly activeColor: StringConstructor;
readonly size: import('vue').PropType<import('../../../utils').ComicSize>;
}>> & Readonly<{
onChange?: (value: boolean) => any;
"onUpdate:modelValue"?: (val: string | number) => any;
}>, {
readonly disabled: boolean;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};