@oiij/naive-ui
Version:
Som Composable Functions And Components for Vue 3
35 lines (34 loc) • 1.36 kB
TypeScript
declare function __VLS_template(): {
attrs: Partial<{}>;
slots: {
description?(_: {}): any;
icon?(_: {}): any;
};
refs: {};
rootEl: any;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import('vue').DefineComponent<{
show?: boolean;
appendTo?: string | import('vue').RendererElement;
mask?: boolean | import('vue').CSSProperties;
blur?: boolean;
disableScroll?: boolean;
scrollSelector?: string | HTMLElement;
spinProps?: Omit<import('naive-ui').SpinProps, "show"> & import('..').ClassStyle;
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
show?: boolean;
appendTo?: string | import('vue').RendererElement;
mask?: boolean | import('vue').CSSProperties;
blur?: boolean;
disableScroll?: boolean;
scrollSelector?: string | HTMLElement;
spinProps?: Omit<import('naive-ui').SpinProps, "show"> & import('..').ClassStyle;
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};