-
Notifications
You must be signed in to change notification settings - Fork 6k
Open
Milestone
Description
typescript-fetch-client-generated
can not use it, how to using ?
index.html
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title></title>
<script src="https://cdn.bootcss.com/require.js/2.3.5/require.min.js"></script>
<script type="text/javascript" src="api.js"></script>
</head>
<body>
</body>
</html>
api.js
"use strict";
/**
* campaign.game
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: 0.0.2-preview-2
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
var __extends = (this && this.__extends) || (function () {
var extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
var url = require("url");
var isomorphicFetch = require("isomorphic-fetch");
var assign = require("core-js/library/fn/object/assign");
var BASE_PATH = "https://***.***.com/**".replace(/\/+$/, '');
var BaseAPI = /** @class */ (function () {
function BaseAPI(fetch, basePath) {
if (fetch === void 0) { fetch = isomorphicFetch; }
if (basePath === void 0) { basePath = BASE_PATH; }
this.basePath = basePath;
this.fetch = fetch;
}
return BaseAPI;
}());
exports.BaseAPI = BaseAPI;
};
kathibeepboop