Closed DanTup closed 6 years ago
I think it's essentially a copy/paste of the disconnectRequest function:
disconnectRequest
// Existing public disconnectRequest(args?: DebugProtocol.DisconnectArguments): Promise<DebugProtocol.DisconnectResponse> { return this.send('disconnect', args); } // New public terminateRequest(args?: DebugProtocol.TerminateArguments): Promise<DebugProtocol.TerminateResponse> { return this.send('terminate', args); }
I think it's essentially a copy/paste of the
disconnectRequest
function: