Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
SKairinos committed Aug 8, 2024
1 parent ee87f5e commit 0b32450
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 23 deletions.
16 changes: 8 additions & 8 deletions src/api/klass.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
import { type Class, urls } from "codeforlife/api"
import getReadClassEndpoints, {
CLASS_TAG,
type ListClassesArg,
type ListClassesResult,
type RetrieveClassArg,
type RetrieveClassResult,
} from "codeforlife/api/endpoints/klass"
import {
type BulkUpdateArg,
type BulkUpdateResult,
Expand All @@ -18,6 +10,14 @@ import {
buildUrl,
tagData,
} from "codeforlife/utils/api"
import { type Class, urls } from "codeforlife/api"
import getReadClassEndpoints, {
CLASS_TAG,
type ListClassesArg,
type ListClassesResult,
type RetrieveClassArg,
type RetrieveClassResult,
} from "codeforlife/api/endpoints/klass"

import api from "."

Expand Down
12 changes: 6 additions & 6 deletions src/api/school.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
import { type School, urls } from "codeforlife/api"
import getReadSchoolEndpoints, {
type RetrieveSchoolArg,
type RetrieveSchoolResult,
SCHOOL_TAG,
} from "codeforlife/api/endpoints/school"
import {
type CreateArg,
type CreateResult,
Expand All @@ -12,6 +6,12 @@ import {
buildUrl,
tagData,
} from "codeforlife/utils/api"
import { type School, urls } from "codeforlife/api"
import getReadSchoolEndpoints, {
type RetrieveSchoolArg,
type RetrieveSchoolResult,
SCHOOL_TAG,
} from "codeforlife/api/endpoints/school"

import api from "."

Expand Down
2 changes: 1 addition & 1 deletion src/api/schoolTeacherInvitation.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { type User } from "codeforlife/api"
import {
type Arg,
type CreateArg,
Expand All @@ -15,6 +14,7 @@ import {
buildUrl,
tagData,
} from "codeforlife/utils/api"
import { type User } from "codeforlife/api"

import api from "."

Expand Down
16 changes: 8 additions & 8 deletions src/api/user.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
import { type User, urls } from "codeforlife/api"
import getReadUserEndpoints, {
type ListUsersArg,
type ListUsersResult,
type RetrieveUserArg,
type RetrieveUserResult,
USER_TAG,
} from "codeforlife/api/endpoints/user"
import {
type Arg,
type CreateArg,
Expand All @@ -17,6 +9,14 @@ import {
buildUrl,
tagData,
} from "codeforlife/utils/api"
import { type User, urls } from "codeforlife/api"
import getReadUserEndpoints, {
type ListUsersArg,
type ListUsersResult,
type RetrieveUserArg,
type RetrieveUserResult,
USER_TAG,
} from "codeforlife/api/endpoints/user"

import api from "."

Expand Down

0 comments on commit 0b32450

Please sign in to comment.