startgg-helper 1.0.2 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "startgg-helper",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "A set of functions and classes useful to communicate with the start.gg API, using any client (YOU NEED TO PROVIDE A CLIENT YOURSELF, SEE README)",
5
5
  "main": "main.js",
6
6
  "scripts": {
package/src/query.js CHANGED
@@ -5,7 +5,7 @@ import { TimedQuerySemaphore } from './queryLimiter.js'
5
5
  * Dummy client class that's only used in the JSDoc.
6
6
  * In a real use case, the user will have their own client class.
7
7
  */
8
- export class Client {
8
+ class Client {
9
9
  request(){}
10
10
  }
11
11
 
@@ -4,7 +4,7 @@
4
4
  * Dummy client class that's only used in the JSDoc.
5
5
  * In a real use case, the user will have their own client class.
6
6
  */
7
- export class Client {
7
+ class Client {
8
8
  request(){}
9
9
  }
10
10