UNPKG

@fe6/water-pro

Version:

An enterprise-class UI design language and Vue-based implementation

11 lines (10 loc) 444 B
/** @format */ import type { ComputedRef, Ref } from 'vue'; import type { TableProProps } from '../types/table'; export declare function useTableFooter(propsRef: ComputedRef<TableProProps>, scrollRef: ComputedRef<{ x: string | number | true; y: Nullable<number>; scrollToFirstRowOnChange: boolean; }>, tableElRef: Ref<ComponentRef>, getDataSourceRef: ComputedRef<Recordable>): { getFooterProps: ComputedRef<Recordable<any>>; };