UNPKG

485 BTypeScriptView Raw
1import { MockSpan } from './mock_span';
2/**
3 * Index a collection of reported MockSpans in a way that's easy to run unit
4 * test assertions against.
5 */
6export declare class MockReport {
7 spans: MockSpan[];
8 private spansByUUID;
9 private spansByTag;
10 private debugSpans;
11 private unfinishedSpans;
12 constructor(spans: MockSpan[]);
13 firstSpanWithTagValue(key: string, val: any): MockSpan | null;
14}
15export default MockReport;
16//# sourceMappingURL=mock_report.d.ts.map
\No newline at end of file