MCPcopy Create free account
hub / github.com/TanStack/db /

Class

packages/db/src/event-emitter.ts:5–5  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3 * @template TEvents - Record of event names to event payload types
4 */
5export class EventEmitter<TEvents extends Record<string, any>> {
6 private listeners = new Map<
7 keyof TEvents,
8 Set<(event: TEvents[keyof TEvents]) => void>

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected