Created
March 16, 2019 11:23
-
-
Save 1natsu172/dc52e9f78b1b7189518fafa9985f616d to your computer and use it in GitHub Desktop.
The interface of HTMLElement's event type and event handler
This file contains hidden or 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
/* eslint-disable @typescript-eslint/no-explicit-any */ | |
export type HTMLElementEventHandlers<U extends keyof HTMLElementEventMap> = { | |
[K in U]: (event: HTMLElementEventMap[K]) => any | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
example 👨💻