Skip to main content
Module

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

💧EventEmitter's typesafe replacement
Go to Latest
File

import type { Postable } from "./Postable.ts";import type { NonPostableEvt } from "./NonPostableEvt.ts";
export interface Evt<T> extends Postable<T>, NonPostableEvt<T> { }