style-helper.d.ts 407 B

12345678
  1. import type { TableColumnCtx } from '../table-column/defaults';
  2. import type { TableFooter } from '.';
  3. declare function useStyle<T>(props: TableFooter<T>): {
  4. getCellClasses: (columns: TableColumnCtx<T>[], cellIndex: number) => string[];
  5. getCellStyles: (column: TableColumnCtx<T>, cellIndex: number) => any;
  6. columns: never[] | import("vue").Ref<TableColumnCtx<any>[]>;
  7. };
  8. export default useStyle;