Template base para proyectos SaaS multi-tenant. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React/Vite) - apps/database (PostgreSQL DDL) - docs/ (Documentación) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
13 lines
558 B
TypeScript
13 lines
558 B
TypeScript
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 {};
|