fix types

This commit is contained in:
Arthur Belleville 2025-11-16 14:12:35 +01:00
parent 9f0c3b530f
commit f4705f23a7
No known key found for this signature in database

View file

@ -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";