diff --git a/components/table/interface.tsx b/components/table/interface.tsx index d8f38800f8..cb481c00c2 100644 --- a/components/table/interface.tsx +++ b/components/table/interface.tsx @@ -104,7 +104,7 @@ export interface TableProps { bodyStyle?: React.CSSProperties; className?: string; style?: React.CSSProperties; - children?: React.ReactChildren; + children?: React.ReactNode; } export interface TableStateFilters { @@ -170,6 +170,6 @@ export interface FilterMenuProps { export interface FilterMenuState { selectedKeys: string[]; - keyPathOfSelectedItem: {[key: string]: string}; + keyPathOfSelectedItem: { [key: string]: string }; visible?: boolean; }