fix: table ts type #5009

close #5009
pull/5026/head
tangjinzhou 2021-12-12 14:30:58 +08:00
parent c685b46704
commit 8eb43a4848
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ export type Key = number | string;
export type FixedType = 'left' | 'right' | boolean;
export type DefaultRecordType = Record<string, any>;
export type DefaultRecordType = any;
export type TableLayout = 'auto' | 'fixed';