Skip to content

Instantly share code, notes, and snippets.

@IamFlowZ
Last active June 24, 2020 12:41
Show Gist options
  • Save IamFlowZ/5cbe235ac1c2ee5cffb7d97e943345cf to your computer and use it in GitHub Desktop.
Save IamFlowZ/5cbe235ac1c2ee5cffb7d97e943345cf to your computer and use it in GitHub Desktop.
interface FooParams {
name: string
}
class Foo {
constructor(params: FooParams) {
this = {...this, ...params}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment