comic-plus
Version:
<p align="center"> <img width="200px" src="./logo.png"/> </p>
106 lines (104 loc) • 3.57 kB
TypeScript
declare function open(): void;
declare function close(): void;
declare function __VLS_template(): {
default?(_: {}): any;
magazine?(_: {}): any;
};
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
readonly trigger: {
readonly type: import('vue').PropType<"hover" | "click">;
readonly default: "hover";
};
readonly type: import('vue').PropType<import('../../../utils').ComicType>;
readonly color: StringConstructor;
readonly size: {
readonly type: NumberConstructor;
readonly default: 40;
};
readonly equal: {
readonly type: BooleanConstructor;
readonly default: true;
};
readonly mode: {
readonly type: import('vue').PropType<"wheel" | "semi">;
readonly default: "wheel";
};
readonly iteration: {
readonly type: BooleanConstructor;
readonly default: true;
};
readonly direction: {
readonly type: import('vue').PropType<"top" | "left" | "bottom" | "right">;
readonly default: "top";
};
readonly icon: import('vue').PropType<import('vue').Component>;
readonly chooseAfterHide: {
readonly type: BooleanConstructor;
readonly default: true;
};
readonly disabled: BooleanConstructor;
readonly dept: NumberConstructor;
}>, {
open: typeof open;
close: typeof close;
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
close: () => void;
open: () => void;
"trigger-click": (evt: MouseEvent) => void;
shoot: (sign?: string) => void;
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
readonly trigger: {
readonly type: import('vue').PropType<"hover" | "click">;
readonly default: "hover";
};
readonly type: import('vue').PropType<import('../../../utils').ComicType>;
readonly color: StringConstructor;
readonly size: {
readonly type: NumberConstructor;
readonly default: 40;
};
readonly equal: {
readonly type: BooleanConstructor;
readonly default: true;
};
readonly mode: {
readonly type: import('vue').PropType<"wheel" | "semi">;
readonly default: "wheel";
};
readonly iteration: {
readonly type: BooleanConstructor;
readonly default: true;
};
readonly direction: {
readonly type: import('vue').PropType<"top" | "left" | "bottom" | "right">;
readonly default: "top";
};
readonly icon: import('vue').PropType<import('vue').Component>;
readonly chooseAfterHide: {
readonly type: BooleanConstructor;
readonly default: true;
};
readonly disabled: BooleanConstructor;
readonly dept: NumberConstructor;
}>> & Readonly<{
onClose?: () => any;
onOpen?: () => any;
"onTrigger-click"?: (evt: MouseEvent) => any;
onShoot?: (sign?: string) => any;
}>, {
readonly size: number;
readonly mode: "wheel" | "semi";
readonly disabled: boolean;
readonly direction: "top" | "bottom" | "left" | "right";
readonly trigger: "click" | "hover";
readonly chooseAfterHide: boolean;
readonly equal: boolean;
readonly iteration: 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;
};
};