Skip to content

Generic constraints are sometimes lost #18552

Description

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    DuplicateAn existing issue was already created

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions