We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af6a17c commit d04a6b2Copy full SHA for d04a6b2
2 files changed
src/vs/platform/request/browser/requestService.ts
@@ -56,8 +56,7 @@ export class RequestService {
56
xhr.timeout = options.timeout;
57
}
58
59
- // TODO: remove any
60
- xhr.send(options.data as any);
+ xhr.send(options.data);
61
62
// cancel
63
token.onCancellationRequested(() => {
src/vs/platform/request/node/requestService.ts
@@ -37,9 +37,9 @@ export class RequestService extends Disposable implements IRequestService {
37
38
_serviceBrand: any;
39
40
- protected proxyUrl?: string;
41
- protected strictSSL: boolean;
42
- protected authorization?: string;
+ private proxyUrl?: string;
+ private strictSSL: boolean;
+ private authorization?: string;
43
44
constructor(
45
@IConfigurationService configurationService: IConfigurationService,
0 commit comments