@royalschedule/maps 2.1.12 → 2.1.13

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.
@@ -5,4 +5,4 @@ export declare class SS12000Map {
5
5
  static from: typeof _from;
6
6
  static to: typeof _to;
7
7
  }
8
- export declare type SS12000Types = Types;
8
+ export { Types as SS12000Types };
@@ -4,11 +4,11 @@ import { Group } from './groups';
4
4
  import { Resource } from './resources';
5
5
  import { Room } from './rooms';
6
6
  import { Teacher } from './teachers';
7
- export declare type Types = {
8
- Activity: Activity;
9
- CalendarEvent: CalendarEvent;
10
- Group: Group;
11
- Resource: Resource;
12
- Room: Room;
13
- Teacher: Teacher;
14
- };
7
+ export declare module Types {
8
+ type activity = Activity;
9
+ type calendarEvent = CalendarEvent;
10
+ type group = Group;
11
+ type resource = Resource;
12
+ type room = Room;
13
+ type teacher = Teacher;
14
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@royalschedule/maps",
3
- "version": "2.1.12",
3
+ "version": "2.1.13",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",