@aplus-frontend/ui
Version:
32 lines (31 loc) • 1.12 kB
TypeScript
import { ApBatchActionProps } from './interface';
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
declare function __VLS_template(): {
attrs: Partial<{}>;
slots: Readonly<{
header: () => any[];
prefix: () => void;
suffix: () => void;
}> & {
header: () => any[];
prefix: () => void;
suffix: () => void;
};
refs: {
headerRef: HTMLDivElement;
};
rootEl: HTMLDivElement;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: DefineComponent<ApBatchActionProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ApBatchActionProps> & Readonly<{}>, {
showSelected: boolean;
}, {}, {}, {}, string, ComponentProvideOptions, false, {
headerRef: 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;
};
};