nsn-comp
Version:
NSN核心组件
12 lines (11 loc) • 359 B
TypeScript
import { TableProps, TableState } from "../../../../@types";
import { BaseEntity } from "nsn-entity";
import { Component } from "react";
/**
* 渲染操作列
*/
declare const OptionsColumn: <T extends BaseEntity, DT extends string>(props: {
comp: Component<TableProps<T, DT>, TableState<T>>;
record: T;
}) => JSX.Element;
export { OptionsColumn };