Skip to content

Commit

Permalink
Several manual fixes to satsify verbatimModuleSyntax exports primarily
Browse files Browse the repository at this point in the history
  • Loading branch information
dannon committed Jul 23, 2024
1 parent a4d5cac commit 09481bb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions client/src/api/schema/fetcher.ts
Original file line number Diff line number Diff line change
@@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/User/DiskUsage/Quota/model/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export { QuotaUsage, UserQuotaUsageData } from "./QuotaUsage";
export { QuotaUsage, type UserQuotaUsageData } from "./QuotaUsage";
3 changes: 1 addition & 2 deletions client/src/components/Workflow/Editor/Draggable.vue
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<script setup lang="ts">
import type { ZoomTransform } from "d3-zoom";
import { storeToRefs } from "pinia";
import type { type PropType, Ref } from "vue";
import { computed, inject, reactive, ref } from "vue";
import { computed, inject, type PropType, reactive, type Ref, ref } from "vue";
import { useAnimationFrameSize } from "@/composables/sensors/animationFrameSize";
import { useAnimationFrameThrottle } from "@/composables/throttle";
Expand Down

0 comments on commit 09481bb

Please sign in to comment.