UNPKG

@aplus-frontend/ui

Version:

32 lines (31 loc) 1.06 kB
import { MaskProps } from './interface'; import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; declare function __VLS_template(): { attrs: Partial<{}>; slots: { mask?(_: {}): any; default?(_: {}): any; }; refs: { wrapper: HTMLDivElement; }; rootEl: any; }; type __VLS_TemplateResult = ReturnType<typeof __VLS_template>; declare const __VLS_component: DefineComponent<MaskProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:open": (...args: any[]) => void; }, string, PublicProps, Readonly<MaskProps> & Readonly<{ "onUpdate:open"?: ((...args: any[]) => any) | undefined; }>, { closable: boolean; escClosable: boolean; }, {}, {}, {}, string, ComponentProvideOptions, false, { wrapper: HTMLDivElement; }, any>; declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>; export default _default; type __VLS_WithTemplateSlots<T, S> = T & { new (): { $slots: S; }; };