nsn-comp
Version:
NSN核心组件
11 lines (10 loc) • 360 B
TypeScript
import { TableProps, TableState } from '../../../../@types';
import { BaseEntity } from 'nsn-entity';
import { Component } from 'react';
/**
* table 工具栏中的新建按钮
*/
declare const CreateAction: <T extends BaseEntity, DT extends string>(props: {
comp: Component<TableProps<T, DT>, TableState<T>>;
}) => JSX.Element;
export { CreateAction };