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