UNPKG

nsn-comp

Version:

NSN核心组件

11 lines (10 loc) 360 B
import { TableProps, TableState } from '../../../../@types'; import { BaseEntity } from 'nsn-entity'; import { Component } from 'react'; /** * table 工具栏中的移除按钮 */ declare const RemoveAction: <T extends BaseEntity, DT extends string>(props: { comp: Component<TableProps<T, DT>, TableState<T>>; }) => JSX.Element; export { RemoveAction };