fix: table sortOrder ts type

pull/3667/head
tangjinzhou 2021-02-06 13:58:25 +08:00
parent 18ce372a13
commit 638ccb3b11
1 changed files with 1 additions and 1 deletions

View File

@ -178,7 +178,7 @@ export interface TableState {
pagination?: Partial<ExtractPropTypes<typeof PaginationProps>>;
filters?: TableStateFilters;
sortColumn?: ColumnProps | null;
sortOrder?: string;
sortOrder?: SortOrder;
columns?: ColumnProps[];
}