You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
Automatically closing this issue for housekeeping purposes. The issue labels indicate that it is unactionable at the moment or has already been addressed.
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,T
doesn't have any constraints applied to it.The text was updated successfully, but these errors were encountered: