UNPKG

ivue-material-plus

Version:

A high quality UI components Library with Vue.js

12 lines (11 loc) 402 B
import type { TableFooter } from './types'; import type { TableColumnCtx } from '../table-column/defaults'; declare function useStyle(props: TableFooter): { columns: any; getCellClass: (columns: TableColumnCtx[], cellIndex: number) => string[]; getCellStyle: (column: TableColumnCtx, cellIndex: number) => { left?: string; right?: string; }; }; export default useStyle;