Skip to main content
Module

x/evt/lib/types/interfaces/StatefulEvtLike.ts

💧EventEmitter's typesafe replacement
Go to Latest
File

import type { EvtLike } from "./EvtLike.ts";
export interface StatefulEvtLike<T> extends EvtLike<T> { state: T;};