@aplus-frontend/ui
Version:
32 lines (31 loc) • 1.15 kB
TypeScript
import { HighlightProps } from './interface';
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
declare function __VLS_template(): {
attrs: Partial<{}>;
slots: Readonly<Partial<{
default: (options: {
text: string;
}) => any;
keywords: (options: {
text: string;
}) => any;
}>> & Partial<{
default: (options: {
text: string;
}) => any;
keywords: (options: {
text: string;
}) => any;
}>;
refs: {};
rootEl: HTMLDivElement;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: DefineComponent<HighlightProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<HighlightProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};