UNPKG

@nanocollective/nanocoder

Version:

A local-first CLI coding agent that brings the power of agentic coding tools like Claude Code and Gemini CLI to local models or controlled APIs like OpenRouter

13 lines 468 B
/** * Log entry aggregation engine */ import type { AggregationOptions, AggregationResult, LogEntry } from '../types.js'; /** * Get group key for an entry based on groupBy field */ export declare function getGroupKey(entry: LogEntry, groupBy: string): string; /** * Aggregate log entries based on options */ export declare function aggregateLogEntries(entries: LogEntry[], options: AggregationOptions): AggregationResult; //# sourceMappingURL=aggregator.d.ts.map