glitch-javascript-sdk 0.1.0 → 0.1.2

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.
@@ -7,15 +7,15 @@ import { Teams } from "./api";
7
7
  import { Waitlists } from "./api";
8
8
  declare class Glitch {
9
9
  static config: {
10
- Config: Config;
10
+ Config: typeof Config;
11
11
  };
12
12
  static api: {
13
13
  Auth: typeof Auth;
14
- Competitions: Competitions;
15
- Users: Users;
16
- Events: Events;
17
- Teams: Teams;
18
- Waitlists: Waitlists;
14
+ Competitions: typeof Competitions;
15
+ Users: typeof Users;
16
+ Events: typeof Events;
17
+ Teams: typeof Teams;
18
+ Waitlists: typeof Waitlists;
19
19
  };
20
20
  }
21
21
  export default Glitch;