chore: include pre-built dist for github install

This commit is contained in:
Robin Mordasiewicz
2026-03-14 04:56:50 +00:00
parent a7f0a4cf46
commit bce8ff3a75
1011 changed files with 150081 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
export interface LineRef {
line: number;
hash: string;
}
interface HashMismatch {
line: number;
expected: string;
}
export declare function normalizeLineRef(ref: string): string;
export declare function parseLineRef(ref: string): LineRef;
export declare function validateLineRef(lines: string[], ref: string): void;
export declare class HashlineMismatchError extends Error {
private readonly mismatches;
private readonly fileLines;
readonly remaps: ReadonlyMap<string, string>;
constructor(mismatches: HashMismatch[], fileLines: string[]);
static formatMessage(mismatches: HashMismatch[], fileLines: string[]): string;
}
export declare function validateLineRefs(lines: string[], refs: string[]): void;
export {};