newo
Version:
NEWO CLI: Professional command-line tool with modular architecture for NEWO AI Agent development. Features account migration, integration management, webhook automation, AKB knowledge base, project attributes, sandbox testing, IDN-based file management, r
18 lines • 565 B
TypeScript
/**
* Proper diff algorithm for accurate content comparison
*/
export interface DiffLine {
type: 'context' | 'add' | 'remove';
localLineNum: number;
remoteLineNum: number;
content: string;
}
/**
* Generate a proper diff using LCS algorithm
*/
export declare function generateDiff(localContent: string, remoteContent: string): DiffLine[];
/**
* Filter diff to show only relevant sections with context
*/
export declare function filterDiffWithContext(diff: DiffLine[], contextLines?: number): DiffLine[];
//# sourceMappingURL=diff-utils.d.ts.map