fastlion-amis
Version:
一种MIS页面生成工具
22 lines (21 loc) • 604 B
TypeScript
import React from 'react';
import './index.scss';
import '../../style/baseCss/popover.scss';
interface CellProperty {
label?: string;
name?: string;
type?: string;
group?: Array<CellProperty>;
hiddenOn?: string;
[propName: string]: any;
}
interface GenericOperationProps {
seat?: 'left' | 'right' | 'center';
rightTableWidth?: number;
buttons?: Array<CellProperty>;
source: any;
limitNum?: number;
primaryField?: string;
}
declare const GenericOperationContainer: React.FC<GenericOperationProps>;
export { GenericOperationContainer };