diff --git a/server/api/getArticle.ts b/server/api/getArticle.ts index 7eae929..901ff35 100644 --- a/server/api/getArticle.ts +++ b/server/api/getArticle.ts @@ -7,7 +7,7 @@ import sqlite3 from "sqlite3"; import path from "path"; import { fileURLToPath } from "url"; import { asyncDatabaseRead } from "~/utils/asyncDatabase"; -import type { ArticleInfo } from "~/utils/news"; +import type { ArticleInfo } from "~/utils/types/news"; const __filename = fileURLToPath(import.meta.url); const __dirname = path.dirname(__filename); diff --git a/server/api/getGalleryImages.ts b/server/api/getGalleryImages.ts index 7c0ddfc..0c193e6 100644 --- a/server/api/getGalleryImages.ts +++ b/server/api/getGalleryImages.ts @@ -5,7 +5,7 @@ import sqlite3 from "sqlite3"; import path from "path"; import { fileURLToPath } from "url"; -import type { GalleryEntry } from "~/utils/galleryEntry"; +import type { GalleryEntry } from "~/utils/types/galleryEntry"; import { asyncDatabaseRead } from "~/utils/asyncDatabase"; const __filename = fileURLToPath(import.meta.url); diff --git a/server/api/getNewsList.ts b/server/api/getNewsList.ts index 65791ea..c5a1b26 100644 --- a/server/api/getNewsList.ts +++ b/server/api/getNewsList.ts @@ -7,7 +7,7 @@ import sqlite3 from "sqlite3"; import path from "path"; import { fileURLToPath } from "url"; import { asyncDatabaseRead } from "~/utils/asyncDatabase"; -import type { NewsEntry } from "~/utils/news"; +import type { NewsEntry } from "~/utils/types/news"; const __filename = fileURLToPath(import.meta.url); const __dirname = path.dirname(__filename); diff --git a/utils/types/hamburgerMenu.ts b/utils/types/hamburgerMenu.ts index 97af772..ac924ca 100644 --- a/utils/types/hamburgerMenu.ts +++ b/utils/types/hamburgerMenu.ts @@ -3,7 +3,7 @@ * @module utils/hamburgerMenu */ -import type { DropDownEntry } from "#imports"; +import type { DropDownEntry } from "./dropDown"; /** * Interface for HamburgerMenu component properties