(data: string, cancelToken?: vscode.CancellationToken, extraDetails?: IInteractorDataDetails)
| 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 { |
no outgoing calls
no test coverage detected