From 09481bb127f339d083cd87261b02e89e87c2cbf7 Mon Sep 17 00:00:00 2001 From: Dannon Baker Date: Tue, 23 Jul 2024 16:51:16 -0400 Subject: [PATCH] Several manual fixes to satsify verbatimModuleSyntax exports primarily --- client/src/api/schema/fetcher.ts | 4 ++-- client/src/components/User/DiskUsage/Quota/model/index.ts | 2 +- client/src/components/Workflow/Editor/Draggable.vue | 3 +-- 3 files changed, 4 insertions(+), 5 deletions(-) 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 @@