evt
Version:
Type safe replacement for node's EventEmitter
10 lines (9 loc) • 317 B
TypeScript
import type { Ctx } from "./Ctx";
import type { Evt } from "./Evt";
import type { StatefulEvt } from "./StatefulEvt";
/** Manually handling circular import so React Native does not gives warning. */
export declare const importProxy: {
Ctx: typeof Ctx;
Evt: typeof Evt;
StatefulEvt: typeof StatefulEvt;
};