From a7dbbecaa339698c1f1be4a08295521e054956d4 Mon Sep 17 00:00:00 2001 From: Gauthier Roebroeck Date: Mon, 12 Jan 2026 10:29:16 +0800 Subject: [PATCH] add missing type --- next-ui/src/types/libraries.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/next-ui/src/types/libraries.ts b/next-ui/src/types/libraries.ts index 5456f806..9da7b0c7 100644 --- a/next-ui/src/types/libraries.ts +++ b/next-ui/src/types/libraries.ts @@ -3,3 +3,4 @@ */ // eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents export type LibraryId = string | 'all' | 'pinned' | 'unpinned' +export type PresentationMode = 'grid' | 'list' | 'table'