From d99c5e2a23228c32c44aa6ff176dd56741a5b518 Mon Sep 17 00:00:00 2001 From: Chris Amico Date: Mon, 1 Apr 2024 11:16:35 -0400 Subject: [PATCH] one more --- src/api/types/document.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/api/types/document.ts b/src/api/types/document.ts index a1806fb62..0f03fc923 100644 --- a/src/api/types/document.ts +++ b/src/api/types/document.ts @@ -1,6 +1,6 @@ -import { Nullable } from "./common"; -import { Org, User } from "./orgAndUser"; -import { Project } from "./project"; +import type { Nullable } from "./common"; +import type { Org, User } from "./orgAndUser"; +import type { Project } from "./project"; export type DocumentAccess = "public" | "organization" | "private";