@schema-render/search-table-react
Version:
Conditional search table component.
27 lines (26 loc) • 395 B
TypeScript
/**
* 列配置 key
*/
export declare enum EColumnsKeys {
/**
* 操作栏
*/
actions = "__actions__",
/**
* 序号栏
*/
rowNumber = "__row-number__"
}
/**
* 内部使用类名
*/
export declare const EClassNames: {
/**
* 表格根节点类名
*/
table: string;
/**
* 表格分页节点类名
*/
pagination: string;
};