Files
oh-my-opencode/dist/tools/hashline-edit/hashline-chunk-formatter.d.ts
T
2026-03-14 04:56:50 +00:00

11 lines
347 B
TypeScript

export interface HashlineChunkFormatter {
push(formattedLine: string): string[];
flush(): string | undefined;
}
interface HashlineChunkFormatterOptions {
maxChunkLines: number;
maxChunkBytes: number;
}
export declare function createHashlineChunkFormatter(options: HashlineChunkFormatterOptions): HashlineChunkFormatter;
export {};