bunyamin
Version:
Bunyan-based logger for Node.js supporting Trace Event format
9 lines (8 loc) • 339 B
TypeScript
import type { Bunyamin } from '../decorator';
import type { ThreadGroupConfig } from '../streams';
export declare class ThreadGroups implements Iterable<ThreadGroupConfig> {
#private;
constructor(getBunyamin: () => Bunyamin);
add(group: ThreadGroupConfig): this;
[Symbol.iterator](): IterableIterator<ThreadGroupConfig>;
}