@aplus-frontend/ui
Version:
31 lines (30 loc) • 1.1 kB
TypeScript
import { ApTagGroupProps, ApTagProps, EllipsisProps } from './interface';
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
type ApTagGroupSlots = {
tooltip?: (props: {
tags: ApTagProps[];
}) => void;
};
declare function __VLS_template(): {
attrs: Partial<{}>;
slots: Readonly<ApTagGroupSlots> & ApTagGroupSlots;
refs: {
container: HTMLDivElement;
};
rootEl: any;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: DefineComponent<ApTagGroupProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ApTagGroupProps> & Readonly<{}>, {
ellipsis: EllipsisProps;
space: number;
list: ApTagProps[];
}, {}, {}, {}, string, ComponentProvideOptions, false, {
container: 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;
};
};