UNPKG

@flowlab/all

Version:

A cool library focusing on handling various flows

9 lines (8 loc) 281 B
import { getCurrentEventBus } from '../internal/context'; /** * 列出当前绑定的所有事件名(仅限内存实现) */ export function listBoundEvents(): string[] { const bus: any = getCurrentEventBus(); return bus.handlers ? Array.from(bus.handlers.keys()) : []; }