vexip-ui
Version:
A Vue 3 UI library, Highly customizability, full TypeScript, performance pretty good
62 lines (61 loc) • 1.83 kB
TypeScript
import { PropType } from 'vue';
import { PopupItemState } from './symbol';
declare function __VLS_template(): {
attrs: Partial<{}>;
slots: {
default?(_: {
item: PopupItemState;
}): any;
};
refs: {
wrapper: HTMLDivElement;
};
rootEl: any;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
state: {
type: PropType<PopupItemState>;
default: () => {};
};
transitionName: {
type: StringConstructor;
default: null;
};
innerClass: {
type: PropType<import('@vexip-ui/config').ClassType>;
default: null;
};
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
enter: (...args: any[]) => void;
leave: (...args: any[]) => void;
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
state: {
type: PropType<PopupItemState>;
default: () => {};
};
transitionName: {
type: StringConstructor;
default: null;
};
innerClass: {
type: PropType<import('@vexip-ui/config').ClassType>;
default: null;
};
}>> & Readonly<{
onEnter?: ((...args: any[]) => any) | undefined;
onLeave?: ((...args: any[]) => any) | undefined;
}>, {
transitionName: string;
state: PopupItemState;
innerClass: import('@vexip-ui/config').ClassType;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
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;
};
};