UNPKG

jamis

Version:

一种支持通过JSON配置方式生成页面的组件库

19 lines (18 loc) 599 B
import React from 'react'; import type { TableCellProps } from '../types'; export declare class TableCell extends React.Component<TableCellProps> { static defaultProps: { wrapperComponent: string; }; static propsList: Array<string>; parseBackgroundScale: (column: TableCellProps["column"], data: Record<string, any>) => string; render(): JSX.Element; } export declare class TableCellRenderer extends TableCell { static propsList: string[]; } export declare class FieldRenderer extends TableCell { static defaultProps: { wrapperComponent: string; }; }