element-plus
Version:
> TODO: description
9 lines (8 loc) • 367 B
TypeScript
import type { TableColumnCtx } from '../table-column/defaults';
import type { TableFooter } from '.';
declare function useStyle<T>(props: TableFooter<T>): {
hasGutter: import("vue").ComputedRef<number>;
getRowClasses: (column: TableColumnCtx<T>, cellIndex: number) => string[];
columns: import("vue").Ref<TableColumnCtx<T>[]>;
};
export default useStyle;