UNPKG

@busy-hour/blaze

Version:

<h1 align='center'>🔥 Blaze</h1> <div align='center'> An event driven framework for 🔥 Hono.js </div>

9 lines (8 loc) • 238 B
import type { Random } from '../../types/common'; export interface EmitterListener { (...args: Random[]): Promise<Random> | Random; } export interface BlazeEventEmitterOption { maxListener?: number | null; useMap?: boolean; }