TypeScript Version: 2.4.2
Code
typeA={foo: number;bar: string;};classComponent<T>{props: T;constructor(props: T){this.props=props;}render(): Component<T>|null{returnnull;};}constexampleHOC=<TextendsA>(WrappedComponent: Component<T>)=>{returnclassExampleHOCextendsComponent<T>{render(){/** Rest types may only be created from object types. */const{ foo, ...rest}=this.props;returnnewComponent(this.props);}}};Expected behavior:
The code above compiles.
Actual behavior:
Rest types may only be created from object types. error message is shown, which leads me to believe that at the time of destructuring the props, T doesn't have any constraints applied to it.
TypeScript Version: 2.4.2
Code
Expected behavior:
The code above compiles.
Actual behavior:
Rest types may only be created from object types.error message is shown, which leads me to believe that at the time of destructuring the props,Tdoesn't have any constraints applied to it.