UNPKG

@fe6/water-pro

Version:

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

7 lines (6 loc) 303 B
/** @format */ import type { ComputedRef } from 'vue'; import type { TableProProps, TableCustomRecord } from '../types/table'; export declare function useTableStyle(propsRef: ComputedRef<TableProProps>, prefixCls: string): { getRowClassName: (record: TableCustomRecord, index: number) => string; };