Skip to content

Commit

Permalink
🔧 chore: added more exports
Browse files Browse the repository at this point in the history
  • Loading branch information
fwestling committed Apr 15, 2024
1 parent 1fe593a commit 54d01a3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/twelve-vans-push.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@first-australia/latitude-scheduler": patch
---

Added more exports
5 changes: 5 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,16 @@ import Timetable from "@/v8/timetable/timetable";
import Tournament from "@/v8/tournament";

export * from "@/v8/activity";
export { default as Activity } from "@/v8/activity";
export * from "@/v8/config";
export * from "@/v8/team";
export { default as Team } from "@/v8/team";
export * from "@/v8/timeslot/timeslot";
export { default as Timeslot } from "@/v8/timeslot/timeslot";
export * from "@/v8/timetable/timetable";
export { default as Timetable } from "@/v8/timetable/timetable";
export * from "@/v8/tournament";
export { default as Tournament } from "@/v8/tournament";

console.log("Timetable test:");
const timetable = new Timetable();
Expand Down

0 comments on commit 54d01a3

Please sign in to comment.