Commit 261936b117d1d261ecb8fafc0f6c839cb2913918
1 parent
3cf7988c
revert(table): revert form type annotation
Showing
1 changed file
with
1 additions
and
1 deletions
src/components/Table/src/types/table.ts
... | ... | @@ -87,7 +87,7 @@ export interface GetColumnsParams { |
87 | 87 | export type SizeType = 'default' | 'middle' | 'small' | 'large'; |
88 | 88 | |
89 | 89 | export interface TableActionType { |
90 | - // reload: (opt?: FetchParams) => Promise<void>; | |
90 | + reload: (opt?: FetchParams) => Promise<void>; | |
91 | 91 | getSelectRows: () => any[]; |
92 | 92 | clearSelectedRowKeys: () => void; |
93 | 93 | getSelectRowKeys: () => string[]; | ... | ... |