aboutsummaryrefslogtreecommitdiff
path: root/viewer/src/@types/gallery.d.ts
diff options
context:
space:
mode:
authorpacien2020-02-25 16:03:00 +0100
committerNotkea2020-02-25 19:18:00 +0100
commit2766f5f9a491c5f7ebf1eeac1c970daec3656be2 (patch)
tree59e626febb85476a6bc476b94cb28fc186729c34 /viewer/src/@types/gallery.d.ts
parent9f5b07ccde8f54bb4d1905c8d51e69f762aed057 (diff)
downloadldgallery-2766f5f9a491c5f7ebf1eeac1c970daec3656be2.tar.gz
transverse: combine item tree and gallery-wide properties
GitHub: closes #142
Diffstat (limited to 'viewer/src/@types/gallery.d.ts')
-rw-r--r--viewer/src/@types/gallery.d.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/viewer/src/@types/gallery.d.ts b/viewer/src/@types/gallery.d.ts
index 03d21fc..d7645b6 100644
--- a/viewer/src/@types/gallery.d.ts
+++ b/viewer/src/@types/gallery.d.ts
@@ -22,6 +22,13 @@ declare namespace Gallery {
22 galleryRoot: string, 22 galleryRoot: string,
23 } 23 }
24 24
25 interface GalleryProperties {
26 // empty for now
27 }
28 interface Index {
29 properties: GalleryProperties,
30 tree: Item
31 }
25 interface Other extends Item { 32 interface Other extends Item {
26 properties: OtherProperties, 33 properties: OtherProperties,
27 } 34 }