comic-plus
Version:
<p align="center"> <img width="200px" src="./logo.png"/> </p>
44 lines (42 loc) • 1.76 kB
TypeScript
declare function __VLS_template(): {
extra?(_: {}): any;
default?(_: {}): any;
};
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
readonly modelValue: import('vue').PropType<string | number>;
readonly type: {
readonly type: import('vue').PropType<"line" | "card" | "arc">;
readonly default: "line";
};
readonly color: StringConstructor;
readonly onlyTab: BooleanConstructor;
readonly closable: BooleanConstructor;
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
change: (value: string | number) => void;
"update:modelValue": (value: string | number) => void;
"tab-remove": (value: string | number) => void;
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
readonly modelValue: import('vue').PropType<string | number>;
readonly type: {
readonly type: import('vue').PropType<"line" | "card" | "arc">;
readonly default: "line";
};
readonly color: StringConstructor;
readonly onlyTab: BooleanConstructor;
readonly closable: BooleanConstructor;
}>> & Readonly<{
onChange?: (value: string | number) => any;
"onUpdate:modelValue"?: (value: string | number) => any;
"onTab-remove"?: (value: string | number) => any;
}>, {
readonly type: "line" | "card" | "arc";
readonly closable: boolean;
readonly onlyTab: 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;
};
};