nws-client-js
Version:
JavaScript client for the National Weather Service API
28 lines (27 loc) • 814 B
JavaScript
;
// tslint:disable
/**
* weather.gov API
* weather.gov API
*
* OpenAPI spec version: 1.8.5
*
*
* NOTE: This file is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the file manually.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.Configuration = void 0;
var Configuration = /** @class */ (function () {
function Configuration(param) {
if (param === void 0) { param = {}; }
this.apiKey = param.apiKey;
this.username = param.username;
this.password = param.password;
this.accessToken = param.accessToken;
this.basePath = param.basePath;
}
return Configuration;
}());
exports.Configuration = Configuration;