| 39 | } |
| 40 | |
| 41 | export interface IInteractor { |
| 42 | id: string; |
| 43 | onData(data: string, cancelToken?: vscode.CancellationToken, extraDetails?: IInteractorDataDetails): Promise<IInteraction>; |
| 44 | } |
| 45 | |
| 46 | export class MitmInteractor implements IInteractor { |
| 47 | static ID = 'mitm'; |
no outgoing calls
no test coverage detected