UNPKG

wave-roll

Version:

JavaScript Library for Comparative MIDI Piano-Roll Visualization

18 lines 634 B
import type { NoteMatchResult } from "@/lib/evaluation/transcription/matchNotes"; export interface EvaluationLogEntry { timestamp: string; refId: string; estId: string; tolerances: Record<string, unknown>; matches: number; falseNegatives: number; falsePositives: number; } export declare class EvaluationLogger { private entries; log(refId: string, estId: string, tolerances: Record<string, unknown>, result: NoteMatchResult): void; getEntries(): EvaluationLogEntry[]; clear(): void; } export declare const evaluationLogger: EvaluationLogger; //# sourceMappingURL=evaluation-logger.d.ts.map