Commit 261936b117d1d261ecb8fafc0f6c839cb2913918

Authored by vben
1 parent 3cf7988c

revert(table): revert form type annotation

src/components/Table/src/types/table.ts
@@ -87,7 +87,7 @@ export interface GetColumnsParams { @@ -87,7 +87,7 @@ export interface GetColumnsParams {
87 export type SizeType = 'default' | 'middle' | 'small' | 'large'; 87 export type SizeType = 'default' | 'middle' | 'small' | 'large';
88 88
89 export interface TableActionType { 89 export interface TableActionType {
90 - // reload: (opt?: FetchParams) => Promise<void>; 90 + reload: (opt?: FetchParams) => Promise<void>;
91 getSelectRows: () => any[]; 91 getSelectRows: () => any[];
92 clearSelectedRowKeys: () => void; 92 clearSelectedRowKeys: () => void;
93 getSelectRowKeys: () => string[]; 93 getSelectRowKeys: () => string[];