Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristof Marti <chrmarti@microsoft.com>2019-11-11 18:22:56 +0300
committerChristof Marti <chrmarti@microsoft.com>2019-11-11 18:22:56 +0300
commitc27fe98afec4d5d7ff23ba076e2cdb39eab93f38 (patch)
tree88e5d979c2fe5505cfddc60beabe22c8eef8a2ce /src/typings
parent587e25ca5334f12d2b9988efec0f0ccd8bcc6c6e (diff)
Reduce typings files (#83421)
Diffstat (limited to 'src/typings')
-rw-r--r--src/typings/http-proxy-agent.d.ts20
-rw-r--r--src/typings/vscode-proxy-agent.d.ts6
2 files changed, 0 insertions, 26 deletions
diff --git a/src/typings/http-proxy-agent.d.ts b/src/typings/http-proxy-agent.d.ts
deleted file mode 100644
index 3d0071543b4..00000000000
--- a/src/typings/http-proxy-agent.d.ts
+++ /dev/null
@@ -1,20 +0,0 @@
-/*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
-
-declare module 'http-proxy-agent' {
-
- interface IHttpProxyAgentOptions {
- host: string;
- port: number;
- auth?: string;
- }
-
- class HttpProxyAgent {
- constructor(proxy: string);
- constructor(opts: IHttpProxyAgentOptions);
- }
-
- export = HttpProxyAgent;
-} \ No newline at end of file
diff --git a/src/typings/vscode-proxy-agent.d.ts b/src/typings/vscode-proxy-agent.d.ts
deleted file mode 100644
index a997fa97801..00000000000
--- a/src/typings/vscode-proxy-agent.d.ts
+++ /dev/null
@@ -1,6 +0,0 @@
-/*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
-
-declare module 'vscode-proxy-agent';