( oldStr: string, newStr: string, options?: any )
| 38 | options?: DiffCharsOptionsNonabortable |
| 39 | ): ChangeObject<string>[] |
| 40 | export function diffChars( |
| 41 | oldStr: string, |
| 42 | newStr: string, |
| 43 | options?: any |
| 44 | ): undefined | ChangeObject<string>[] { |
| 45 | return characterDiff.diff(oldStr, newStr, options); |
| 46 | } |
no test coverage detected