Closed
Description
import * as React from "react";
interface Props {
}
export class Test extends React.Component<Props, {}> {
render() {
return <div {...this.props} />
}
}
Was working fine until: [email protected]
In [email protected]
throws:
error TS2698: Spread types may only be created from object types.
Not sure if related: #13557