fastlion-amis
Version:
一种MIS页面生成工具
23 lines (22 loc) • 677 B
TypeScript
import React from 'react';
import { RendererProps } from '../../factory';
export interface TableCellProps extends RendererProps {
wrapperComponent?: React.ReactType;
column: object;
}
export declare class TableCell extends React.Component<RendererProps> {
static defaultProps: {
wrapperComponent: string;
};
static propsList: Array<string>;
constructor(props: RendererProps);
render(): JSX.Element;
}
export declare class TableCellRenderer extends TableCell {
static propsList: string[];
}
export declare class FieldRenderer extends TableCell {
static defaultProps: {
wrapperComponent: string;
};
}