commit the test snapshot, add types

This commit is contained in:
Vitaly 2023-08-17 05:36:08 +03:00
commit 12e2fc3c81
2 changed files with 32 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 215 KiB

32
types.d.ts vendored Normal file
View file

@ -0,0 +1,32 @@
type Options = boolean | Readonly<AddEventListenerOptions> | undefined
declare function registerListener<KD extends keyof DocumentEventMap>(
element: Readonly<Document> | null | undefined,
eventType: KD,
// eslint-disable-next-line functional/prefer-immutable-types
listener: (this: Document, evt: DocumentEventMap[KD]) => void,
options?: Options,
): void
declare function registerListener<KH extends keyof HTMLElementEventMap>(
element: Readonly<HTMLElement> | null | undefined,
eventType: KH,
// eslint-disable-next-line functional/prefer-immutable-types
listener: (this: HTMLElement, evt: HTMLElementEventMap[KH]) => void,
options?: Options,
): void
declare function registerListener<KW extends keyof WindowEventMap>(
element: Readonly<Window> | null | undefined,
eventType: KW,
// eslint-disable-next-line functional/prefer-immutable-types
listener: (this: Window, evt: WindowEventMap[KW]) => void,
options?: Options,
): void
declare function registerListener(
element: Readonly<Document | HTMLElement | Window> | null | undefined,
eventType: string,
// eslint-disable-next-line functional/prefer-immutable-types
listener: (evt: Event) => void,
options?: Options,
): void
export { registerListener }