Skip to content

Commit

Permalink
refactor: update exported types
Browse files Browse the repository at this point in the history
  • Loading branch information
OneLiL05 committed Oct 2, 2023
1 parent 23d0cb3 commit c153d23
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/nurekit/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Nurekit } from "./client.js";

export * from "./client.js";
export * from "./types/index.js";
export { IAuditorium, IGroup, ISchedule, ISubject, ITeacher } from "./types/index.js";

const nurekit = new Nurekit()

Expand Down
2 changes: 1 addition & 1 deletion packages/nurekit/src/modules/groups.module.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { TimestampAdapter } from "../adapters/timestamp.adapter.js";
import { handleAxiosError } from "../helpers/axios.helper.js";
import { transformSchedule } from "../helpers/schedule.helper.js";
import { IGroup, IRawSchedule, ISchedule } from "../index.js";
import { IGroup, IRawSchedule, ISchedule } from "../types/index.js";
import { axiosClient } from "../libs/axios.js";

interface GetScheduleParams {
Expand Down

0 comments on commit c153d23

Please sign in to comment.