Files
oh-my-opencode/dist/tools/hashline-edit/hashline-chunk-formatter.d.ts
T

11 lines
347 B
TypeScript
Raw Normal View History

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