We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 667136a commit ab770ffCopy full SHA for ab770ff
AdvertisingClient.js
@@ -29,8 +29,6 @@ const Regions = {
29
30
module.exports = class AdvertisingClient {
31
32
- tokenUrl;
33
-
34
constructor(options) {
35
36
this.options = options
index.js
@@ -1,15 +1,15 @@
1
/**
2
* Module dependencies.
3
*/
4
-var Strategy = require('./strategy');
+var AdvertisingClient = require('./AdvertisingClient');
5
6
7
8
* Expose `Strategy` directly from package.
9
10
-exports = module.exports = Strategy;
+exports = module.exports = AdvertisingClient;
11
12
13
* Expose constructors.
14
15
-exports.Strategy = Strategy;
+exports.Class = AdvertisingClient;
0 commit comments