Skip to main content
Module

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

💧EventEmitter's typesafe replacement
Go to Latest
File

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