Skip to content

Commit

Permalink
fix: TypeScript definition of Table interface for typescript 4.3.5 (#…
Browse files Browse the repository at this point in the history
…4353)

* fix type for typescript 4.3.5

* Update interface.ts

close #4296
  • Loading branch information
axetroy authored Jul 11, 2021
1 parent 1152e8c commit fb94726
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/table/interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export type ColumnProps = Partial<ExtractPropTypes<typeof columnProps>> & {
filterIcon?: string;
filterDropdown?: string;
customRender?: string;
[key: string]: string;
[key: string]: string | undefined;
};
};

Expand Down

0 comments on commit fb94726

Please sign in to comment.