Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ascii.d.ts 558B

123456789101112
  1. import { RangeCov } from "./types";
  2. interface ReadonlyRangeTree {
  3. readonly start: number;
  4. readonly end: number;
  5. readonly count: number;
  6. readonly children: ReadonlyRangeTree[];
  7. }
  8. export declare function emitForest(trees: ReadonlyArray<ReadonlyRangeTree>): string;
  9. export declare function emitForestLines(trees: ReadonlyArray<ReadonlyRangeTree>): string[];
  10. export declare function parseFunctionRanges(text: string, offsetMap: Map<number, number>): RangeCov[];
  11. export declare function parseOffsets(text: string): Map<number, number>;
  12. export {};