Skip to content

Commit

Permalink
refac
Browse files Browse the repository at this point in the history
  • Loading branch information
taga3s committed May 7, 2024
1 parent 5ea0b7c commit a7320f8
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/api/badge/type.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as schemaHelper from "../../Rhythmate-Service/src/pkg/schemaHelper";
import type * as schemaHelper from "../../Rhythmate-Service/src/pkg/schemaHelper";

export type ImageType = "bow" | "cat" | "crown" | "gem" | "horse" | "shield" | "sword";

Expand Down
2 changes: 1 addition & 1 deletion src/api/quest/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as schemaHelper from "../../Rhythmate-Service/src/pkg/schemaHelper";
import type * as schemaHelper from "../../Rhythmate-Service/src/pkg/schemaHelper";

export type Difficulty = "EASY" | "NORMAL" | "HARD";
export type QuestState = "INACTIVE" | "ACTIVE";
Expand Down
2 changes: 1 addition & 1 deletion src/api/tag/type.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as schemaHelper from "../../Rhythmate-Service/src/pkg/schemaHelper";
import type * as schemaHelper from "../../Rhythmate-Service/src/pkg/schemaHelper";

export type CreateTagParams = schemaHelper.RequestData<"/tags", "post">;

Expand Down
2 changes: 1 addition & 1 deletion src/api/user/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as schemaHelper from "../../Rhythmate-Service/src/pkg/schemaHelper";
import type * as schemaHelper from "../../Rhythmate-Service/src/pkg/schemaHelper";

export type AuthParams = schemaHelper.RequestData<"/users/auth", "post">;

Expand Down
2 changes: 1 addition & 1 deletion src/api/weeklyReport/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as schemaHelper from "../../Rhythmate-Service/src/pkg/schemaHelper";
import type * as schemaHelper from "../../Rhythmate-Service/src/pkg/schemaHelper";

export type ListWeeklyReportsResponse = schemaHelper.ResponseData<"/weekly-reports", "get">;

Expand Down

0 comments on commit a7320f8

Please sign in to comment.