x/evt/lib/types/interfaces/StatefulEvtLike.ts
1234567import type { EvtLike } from "./EvtLike.ts";export interface StatefulEvtLike<T> extends EvtLike<T> { state: T;};