Skip to content

Instantly share code, notes, and snippets.

@santiagocezar
Created April 23, 2020 22:50
Show Gist options
  • Select an option

  • Save santiagocezar/6c41a8ed80e093e3a099dc8727642633 to your computer and use it in GitHub Desktop.

Select an option

Save santiagocezar/6c41a8ed80e093e3a099dc8727642633 to your computer and use it in GitHub Desktop.
Typescript "on event do" syntax
function on(event: keyof WindowEventMap): {do: (this: Window, ev: Event) => void} {
return { set do(val) { addEventListener(event, val) }}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment