UNPKG

evt

Version:

Type safe replacement for node's EventEmitter

7 lines (6 loc) 283 B
import type { StatefulReadonlyEvt } from "./StatefulReadonlyEvt"; import type { StatefulPostable } from "./StatefulPostable"; export interface StatefulEvt<T> extends StatefulReadonlyEvt<T>, StatefulPostable<T> { /** https://docs.evt.land/api/statefulevt#state */ state: T; }