diff --git a/packages/shared-types/src/kanban.types.ts b/packages/shared-types/src/kanban.types.ts index 4b7328d..33c596d 100644 --- a/packages/shared-types/src/kanban.types.ts +++ b/packages/shared-types/src/kanban.types.ts @@ -1,5 +1,5 @@ -import { Database, Tables, TablesInsert, TablesUpdate } from "./database.types"; -import { RemoveNullFromObject } from "./utils"; +import type { Database, Tables, TablesInsert, TablesUpdate } from "./database.types.js"; +import type { RemoveNullFromObject } from "./utils.js"; export type TaskStatus = "todo" | "in_progress" | "in_review" | "done";