| 33 | } |
| 34 | |
| 35 | export interface TimeoutOption { |
| 36 | /** |
| 37 | * A number of milliseconds after which the diffing algorithm will abort and return `undefined`. |
| 38 | * Supported by the same functions as `maxEditLength`. |
| 39 | */ |
| 40 | timeout: number; |
| 41 | } |
| 42 | |
| 43 | export interface MaxEditLengthOption { |
| 44 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected