source: frontend/node_modules/@bcoe/v8-coverage/dist/lib/ascii.d.ts

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 2 weeks ago

Fix frontend appearance

  • Property mode set to 100644
File size: 558 bytes
Line 
1import { RangeCov } from "./types";
2interface ReadonlyRangeTree {
3 readonly start: number;
4 readonly end: number;
5 readonly count: number;
6 readonly children: ReadonlyRangeTree[];
7}
8export declare function emitForest(trees: ReadonlyArray<ReadonlyRangeTree>): string;
9export declare function emitForestLines(trees: ReadonlyArray<ReadonlyRangeTree>): string[];
10export declare function parseFunctionRanges(text: string, offsetMap: Map<number, number>): RangeCov[];
11export declare function parseOffsets(text: string): Map<number, number>;
12export {};
Note: See TracBrowser for help on using the repository browser.