UNPKG

@cucumber/cucumber

Version:

The official JavaScript implementation of Cucumber.

10 lines (9 loc) 502 B
import { EventEmitter } from 'node:events'; import { IdGenerator } from '@cucumber/messages'; import { SupportCodeLibrary } from '../support_code_library_builder/types'; export declare function emitMetaMessage(eventBroadcaster: EventEmitter, env: NodeJS.ProcessEnv): Promise<void>; export declare function emitSupportCodeMessages({ eventBroadcaster, supportCodeLibrary, newId, }: { eventBroadcaster: EventEmitter; supportCodeLibrary: SupportCodeLibrary; newId: IdGenerator.NewId; }): void;