aboutsummaryrefslogtreecommitdiff
path: root/viewer/src/@types/ItemType.ts
diff options
context:
space:
mode:
Diffstat (limited to 'viewer/src/@types/ItemType.ts')
-rw-r--r--viewer/src/@types/ItemType.ts11
1 files changed, 11 insertions, 0 deletions
diff --git a/viewer/src/@types/ItemType.ts b/viewer/src/@types/ItemType.ts
new file mode 100644
index 0000000..31a395b
--- /dev/null
+++ b/viewer/src/@types/ItemType.ts
@@ -0,0 +1,11 @@
1// TODO: Convert all ambiant types related to LdGallery to modules
2
3export enum ItemType {
4 OTHER = "other",
5 PICTURE = "picture",
6 PLAINTEXT = "plaintext",
7 PDF = "pdf",
8 VIDEO = "video",
9 AUDIO = "audio",
10 DIRECTORY = "directory",
11}