blob: e826dd08bdea7362b5c11cfc707dc63b4707be56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
export interface CompareLinesResult {
/**
* Whether compared lines are identical.
*/
isEqual: boolean;
/**
* Lines that were not compared due to unbalanced buffers.
*/
restLines1: string[];
/**
* Lines that were not compared due to unbalanced buffers.
*/
restLines2: string[];
}
//# sourceMappingURL=CompareLinesResult.d.ts.map
|