comic-plus
Version:
<p align="center"> <img width="200px" src="./logo.png"/> </p>
111 lines (109 loc) • 3.46 kB
TypeScript
declare function __VLS_template(): {
header?(_: {}): any;
default?(_: {}): any;
footer?(_: {}): any;
};
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
readonly modelValue: BooleanConstructor;
readonly showClose: {
readonly type: BooleanConstructor;
readonly default: true;
};
readonly modeClose: {
readonly type: BooleanConstructor;
readonly default: true;
};
readonly transitionClass: {
readonly type: StringConstructor;
readonly default: "cross-scale";
};
readonly header: StringConstructor;
readonly width: {
readonly type: StringConstructor;
readonly default: "70%";
};
readonly top: {
readonly type: StringConstructor;
readonly default: "15vh";
};
readonly color: {
readonly type: StringConstructor;
readonly default: "#ffffff";
};
readonly beforeClose: FunctionConstructor;
readonly lockScroll: {
readonly type: BooleanConstructor;
readonly default: true;
};
readonly appendTo: StringConstructor;
readonly appendToBody: {
readonly type: BooleanConstructor;
readonly default: true;
};
readonly customClass: StringConstructor;
readonly modeClass: StringConstructor;
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
close: () => void;
"update:modelValue": (value: boolean) => void;
open: () => void;
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
readonly modelValue: BooleanConstructor;
readonly showClose: {
readonly type: BooleanConstructor;
readonly default: true;
};
readonly modeClose: {
readonly type: BooleanConstructor;
readonly default: true;
};
readonly transitionClass: {
readonly type: StringConstructor;
readonly default: "cross-scale";
};
readonly header: StringConstructor;
readonly width: {
readonly type: StringConstructor;
readonly default: "70%";
};
readonly top: {
readonly type: StringConstructor;
readonly default: "15vh";
};
readonly color: {
readonly type: StringConstructor;
readonly default: "#ffffff";
};
readonly beforeClose: FunctionConstructor;
readonly lockScroll: {
readonly type: BooleanConstructor;
readonly default: true;
};
readonly appendTo: StringConstructor;
readonly appendToBody: {
readonly type: BooleanConstructor;
readonly default: true;
};
readonly customClass: StringConstructor;
readonly modeClass: StringConstructor;
}>> & Readonly<{
onClose?: () => any;
"onUpdate:modelValue"?: (value: boolean) => any;
onOpen?: () => any;
}>, {
readonly color: string;
readonly width: string;
readonly top: string;
readonly modelValue: boolean;
readonly appendToBody: boolean;
readonly lockScroll: boolean;
readonly showClose: boolean;
readonly modeClose: boolean;
readonly transitionClass: string;
}, {}, {}, {}, 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;
};
};