@extclp/vexip-ui
Version:
A Vue 3 UI library, Highly customizability, full TypeScript, performance pretty good
35 lines (34 loc) • 1.7 kB
TypeScript
import { ResultSlots } from './symbol';
declare function __VLS_template(): {
attrs: Partial<{}>;
slots: Readonly<ResultSlots> & ResultSlots;
refs: {};
rootEl: HTMLDivElement;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
inherit: import('vue').PropType<boolean>;
title: import('vue').PropType<string>;
size: import('vue').PropType<"default" | "small" | "large">;
type: import('vue').PropType<"success" | "error" | "warning" | "info" | "primary">;
icon: import('vue').PropType<any>;
iconColor: import('vue').PropType<string>;
description: import('vue').PropType<string>;
slots: import('vue').PropType<ResultSlots>;
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
inherit: import('vue').PropType<boolean>;
title: import('vue').PropType<string>;
size: import('vue').PropType<"default" | "small" | "large">;
type: import('vue').PropType<"success" | "error" | "warning" | "info" | "primary">;
icon: import('vue').PropType<any>;
iconColor: import('vue').PropType<string>;
description: import('vue').PropType<string>;
slots: import('vue').PropType<ResultSlots>;
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};