export interface RowFontStyle { /** * 字体大小 */ size?: string; /** * 字体颜色 */ color?: string; /** * 字重 */ weight?: number | string; } /** * 获取cell样式 */ export type GetCellStyle = (data: any) => string; /** * 获取整行的样式 */ export type GetRowFontStyle = (data: any) => RowFontStyle;