diff --git a/client/src/api/schema/fetcher.ts b/client/src/api/schema/fetcher.ts index 61599f4d2a8b..031c28ee8f1b 100644 --- a/client/src/api/schema/fetcher.ts +++ b/client/src/api/schema/fetcher.ts @@ -1,11 +1,11 @@ -import { ApiResponse, Fetcher, type Middleware } from "openapi-typescript-fetch"; +import { type ApiResponse, Fetcher, type Middleware } from "openapi-typescript-fetch"; import { getAppRoot } from "@/onload/loadConfig"; import { rethrowSimple } from "@/utils/simple-error"; import { type paths } from "./schema"; -export { ApiResponse }; +export { type ApiResponse }; const rethrowSimpleMiddleware: Middleware = async (url, init, next) => { try { diff --git a/client/src/components/User/DiskUsage/Quota/model/index.ts b/client/src/components/User/DiskUsage/Quota/model/index.ts index c5818f3a191e..5080f42f3ea5 100644 --- a/client/src/components/User/DiskUsage/Quota/model/index.ts +++ b/client/src/components/User/DiskUsage/Quota/model/index.ts @@ -1 +1 @@ -export { QuotaUsage, UserQuotaUsageData } from "./QuotaUsage"; +export { QuotaUsage, type UserQuotaUsageData } from "./QuotaUsage"; diff --git a/client/src/components/Workflow/Editor/Draggable.vue b/client/src/components/Workflow/Editor/Draggable.vue index 6aace6e81333..c9b4b0a978d2 100644 --- a/client/src/components/Workflow/Editor/Draggable.vue +++ b/client/src/components/Workflow/Editor/Draggable.vue @@ -1,8 +1,7 @@