aboutsummaryrefslogtreecommitdiff
path: root/viewer/src/@types
diff options
context:
space:
mode:
authorZero~Informatique2019-12-22 11:26:53 +0100
committerZero~Informatique2019-12-22 11:26:53 +0100
commit06c4d9299bb684805051355555fa89f0d440d194 (patch)
tree42bb1ac1fdcd44ba1edeef65fa94239fcf53fc77 /viewer/src/@types
parentdc251fffc2998f1cf4f8e9631928c4b92ac0d90e (diff)
downloadldgallery-06c4d9299bb684805051355555fa89f0d440d194.tar.gz
viewer: Implemented tag category and disambiguation filtering
Diffstat (limited to 'viewer/src/@types')
-rw-r--r--viewer/src/@types/tag/index.d.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/viewer/src/@types/tag/index.d.ts b/viewer/src/@types/tag/index.d.ts
index 6a027d4..30bbebb 100644
--- a/viewer/src/@types/tag/index.d.ts
+++ b/viewer/src/@types/tag/index.d.ts
@@ -4,5 +4,9 @@ declare namespace Tag {
4 items: Gallery.Item[]; 4 items: Gallery.Item[];
5 children: Index; 5 children: Index;
6 } 6 }
7 interface NodeWithParent extends Node {
8 parent: Node;
9 }
10 type Search = Node | NodeWithParent;
7 type Index = { [index: string]: Node }; 11 type Index = { [index: string]: Node };
8} \ No newline at end of file 12} \ No newline at end of file