Skip to content
Permalink
9bfb9ba527
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
22 lines (22 sloc) 979 Bytes
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
import { __extends } from "tslib";
import { FetchHttpClient, } from "./fetchHttpClient";
var BrowserFetchHttpClient = /** @class */ (function (_super) {
__extends(BrowserFetchHttpClient, _super);
function BrowserFetchHttpClient() {
return _super !== null && _super.apply(this, arguments) || this;
}
BrowserFetchHttpClient.prototype.prepareRequest = function (_httpRequest) {
return Promise.resolve({});
};
BrowserFetchHttpClient.prototype.processRequest = function (_operationResponse) {
return Promise.resolve();
};
BrowserFetchHttpClient.prototype.fetch = function (input, init) {
return fetch(input, init);
};
return BrowserFetchHttpClient;
}(FetchHttpClient));
export { BrowserFetchHttpClient };
//# sourceMappingURL=browserFetchHttpClient.js.map