UNPKG

recoder-code

Version:

🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!

13 lines (12 loc) • 558 B
import { RangeCov } from "./types"; interface ReadonlyRangeTree { readonly start: number; readonly end: number; readonly count: number; readonly children: ReadonlyRangeTree[]; } export declare function emitForest(trees: ReadonlyArray<ReadonlyRangeTree>): string; export declare function emitForestLines(trees: ReadonlyArray<ReadonlyRangeTree>): string[]; export declare function parseFunctionRanges(text: string, offsetMap: Map<number, number>): RangeCov[]; export declare function parseOffsets(text: string): Map<number, number>; export {};