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

* fix type for typescript 4.3.5

* Update interface.ts

close #4296
pull/4361/head
艾斯特洛 2021-07-11 10:00:52 +08:00 committed by GitHub
parent 1152e8cd71
commit fb94726a1e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;
};
};