sci-pro
Version:
47 lines (46 loc) • 1.27 kB
TypeScript
import _Message from './message.vue';
import type { Plugin } from 'vue';
declare type SFCWithInstall<T> = T & Plugin;
export declare const Message: SFCWithInstall<import("vue").DefineComponent<{
type: {
type: StringConstructor;
required: false;
default: string;
};
title: {
type: StringConstructor;
required: false;
default: string;
};
visible: {
type: BooleanConstructor;
required: false;
default: boolean;
};
}, {
props: any;
emits: (event: "update:visible", ...args: any[]) => void;
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:visible"[], "update:visible", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
type: {
type: StringConstructor;
required: false;
default: string;
};
title: {
type: StringConstructor;
required: false;
default: string;
};
visible: {
type: BooleanConstructor;
required: false;
default: boolean;
};
}>> & {
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
}, {
type: string;
visible: boolean;
title: string;
}, {}>>;
export default _Message;