fix: TypeScript definition of Table interface for typescript 4.3.5 (#4353)

* fix type for typescript 4.3.5

* Update interface.ts

close #4296
refactor-progress
艾斯特洛 2021-07-11 10:00:52 +08:00 committed by tangjinzhou
parent 59e483b79f
commit fc0d6870d9
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ export type ColumnProps = Partial<ExtractPropTypes<typeof columnProps>> & {
filterIcon?: string;
filterDropdown?: string;
customRender?: string;
[key: string]: string;
[key: string]: string | undefined;
};
};