@datametria/vue-components
Version:
DATAMETRIA Vue.js 3 Component Library with Multi-Brand Theming - 51 components + 10 composables with theming support, WCAG 2.2 AA, dark mode, responsive system
33 lines (32 loc) • 1.24 kB
TypeScript
import { SortableTableProps } from '../types';
declare function __VLS_template(): {
attrs: Partial<{}>;
slots: Partial<Record<`cell-${string}`, (_: {
row: Record<string, any>;
value: any;
}) => any>> & {
empty?(_: {}): any;
};
refs: {};
rootEl: HTMLDivElement;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import('vue').DefineComponent<SortableTableProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
"selection-change": (selectedIds: (string | number)[]) => any;
}, string, import('vue').PublicProps, Readonly<SortableTableProps> & Readonly<{
"onSelection-change"?: ((selectedIds: (string | number)[]) => any) | undefined;
}>, {
filterable: boolean;
selectable: boolean;
searchable: boolean;
paginated: boolean;
pageSize: number;
pageSizeOptions: number[];
}, {}, {}, {}, string, import('vue').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;
};
};