Created
January 17, 2022 15:23
-
-
Save wonderbeyond/eb7c841b94431adc4136404a02b465ae to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface Disposable { | |
dispose(): void | |
} | |
function addDisposableEventListener( | |
node: HTMLElement, type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | |
): Disposable { | |
node.addEventListener(type, listener, options); | |
return {dispose() { | |
node.removeEventListener(type, listener, options) | |
}} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment