UNPKG

stimbus

Version:

An event bus for stimulus

9 lines (8 loc) 286 B
import { Listener } from "../types/env"; export default class EventBus { #private; constructor(); addEvent(callerId: string, type: string, listener: Listener): void; removeEvent(callerId: string, type: string): void; trigger(type: string, detail?: unknown): void; }