@extclp/vexip-ui
Version:
A Vue 3 UI library, Highly customizability, full TypeScript, performance pretty good
49 lines (48 loc) • 2.2 kB
TypeScript
declare function __VLS_template(): {
attrs: Partial<{}>;
slots: Readonly<{
default: () => any;
signal: () => any;
line: () => any;
}> & {
default: () => any;
signal: () => any;
line: () => any;
};
refs: {
content: HTMLDivElement;
};
rootEl: HTMLDivElement;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
inherit: import('vue').PropType<boolean>;
type: import('vue').PropType<"success" | "error" | "warning" | "info" | "disabled" | "primary">;
color: import('vue').PropType<string>;
label: import('vue').PropType<string | number>;
dashed: import('vue').PropType<boolean>;
lineColor: import('vue').PropType<string>;
spacing: import('vue').PropType<string | number>;
onSignalClick: import('vue').PropType<((label: string | number) => void) | ((label: string | number) => void)[]>;
}>, {
currentLabel: import('vue').Ref<string | number, string | number>;
content: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
inherit: import('vue').PropType<boolean>;
type: import('vue').PropType<"success" | "error" | "warning" | "info" | "disabled" | "primary">;
color: import('vue').PropType<string>;
label: import('vue').PropType<string | number>;
dashed: import('vue').PropType<boolean>;
lineColor: import('vue').PropType<string>;
spacing: import('vue').PropType<string | number>;
onSignalClick: import('vue').PropType<((label: string | number) => void) | ((label: string | number) => void)[]>;
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
content: HTMLDivElement;
}, HTMLDivElement>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};