Mirror: 🎩 A tiny but capable push & pull stream library for TypeScript and Flow
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix TS typings for fromDomEvent (#18)

authored by

Max Stoiber and committed by
Phil Plückthun
d5ff15f6 806e71e7

+1 -1
+1 -1
src/web/wonka_source_fromDomEvent.d.ts
··· 1 1 import { Source } from '../wonka_types'; 2 2 3 - export const fromDomEvent: <E>(HTMLElement, string) => Source<E>; 3 + export const fromDomEvent: <E>(element: HTMLElement, event: string) => Source<E>;