UNPKG

evt

Version:

Type safe replacement for node's EventEmitter

5 lines (3 loc) 170 B
import type { Postablefrom "./Postable"; import type { NonPostableEvtfrom "./NonPostableEvt"; export interface Evt<T> extends Postable<T>, NonPostableEvt<T> { }