@aplus-frontend/ui
Version:
23 lines (22 loc) • 1.07 kB
TypeScript
import { ApBatchActionGroupProps } from './interface';
import { DefineComponent, ComputedRef, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
import { TableColumnsType } from '@aplus-frontend/antdv';
type __VLS_Props = ApBatchActionGroupProps;
declare function __VLS_template(): {
attrs: Partial<{}>;
slots: Readonly<Record<string, any>> & Record<string, any>;
refs: {};
rootEl: any;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: DefineComponent<__VLS_Props, {
columns: ComputedRef<TableColumnsType<any>> | undefined;
dataSource: ComputedRef<any[]> | undefined;
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};