UNPKG

nsn-comp

Version:

NSN核心组件

12 lines (11 loc) 357 B
import { TableProps, TableState } from "../../../../@types"; import { BaseEntity } from "nsn-entity"; import { Component } from "react"; /** * 渲染状态列 */ declare const StatusColumn: <T extends BaseEntity, DT extends string>(props: { comp: Component<TableProps<T, DT>, TableState<T>>; record: T; }) => JSX.Element; export { StatusColumn };