UNPKG

msw

Version:

Seamless REST/GraphQL API mocking library for browser and Node.js.

9 lines (6 loc) 263 B
import { EventMap, Emitter } from 'strict-event-emitter'; /** * Pipes all emitted events from one emitter to another. */ declare function pipeEvents<Events extends EventMap>(source: Emitter<Events>, destination: Emitter<Events>): void; export { pipeEvents };