Skip to content

Instantly share code, notes, and snippets.

@jsmanifest
Created March 6, 2020 06:48
Show Gist options
  • Save jsmanifest/68e71eb72a113e6a8ad003b9fc844c5b to your computer and use it in GitHub Desktop.
Save jsmanifest/68e71eb72a113e6a8ad003b9fc844c5b to your computer and use it in GitHub Desktop.
class SomeElement<T> {
private element: T
constructor(element: T) {
this.element = element
}
getElement() {
return this.element
}
}
const elem = document.createElement('button')
const button = new SomeElement<HTMLButtonElement>(elem)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment