UNPKG
@cfwest/api-client
Version:
latest (0.1.0)
0.1.0
Unofficial CrossFire West ApiClient implementation.
github.com/cfna/cfwest-api
cfna/cfwest-api
@cfwest/api-client
/
dist
/
internal
/
api-modules
/
base-module.js
10 lines
(9 loc)
•
260 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
BaseApiModule
=
void
0
;
class
BaseApiModule
{
constructor
(
options
) {
this
.
httpClient
= options.
httpClient
; } }
exports
.
BaseApiModule
=
BaseApiModule
;