| 147 | * progress events between 0 and 100%. |
| 148 | */ |
| 149 | export interface IGitProgressParser { |
| 150 | /** |
| 151 | * Parse the given line of output from Git, returns either an `IGitProgress` |
| 152 | * instance if the line could successfully be parsed as a Git progress |
| 153 | * event whose title was registered with this parser or an `IGitOutput` |
| 154 | * instance if the line couldn't be parsed or if the title wasn't |
| 155 | * registered with the parser. |
| 156 | */ |
| 157 | parse(line: string): IGitProgress | IGitOutput |
| 158 | } |
| 159 | |
| 160 | /** |
| 161 | * A utility class for interpreting progress output from `git` |
no outgoing calls
no test coverage detected