Skip to main content
Module

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

💧EventEmitter's typesafe replacement
Go to Latest
File

type Postable<T>= import("./Postable.ts").Postable<T>;
export interface StatefulPostable<T> extends Postable<T> {
state: T;
/** https://docs.evt.land/api/statefulevt#postfocechange */ postForceChange(wData?: readonly [T]): number;
}