UNPKG

xqq_ele

Version:

框架

24 lines (23 loc) 564 B
import { PropType, type App } from "vue"; import { type MessageConfig } from "./type"; declare const MessageProps: { config: { type: PropType<MessageConfig>; default: () => { type: string; className: string; content: string; icon: string; duration: number; close: boolean; }; }; fn: { type: StringConstructor; default: string; }; remove: { type: PropType<(app: App<Element>) => void>; }; }; export default MessageProps;