aboutsummaryrefslogtreecommitdiff
path: root/viewer/src/@types/tag.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'viewer/src/@types/tag.d.ts')
-rw-r--r--viewer/src/@types/tag.d.ts38
1 files changed, 19 insertions, 19 deletions
diff --git a/viewer/src/@types/tag.d.ts b/viewer/src/@types/tag.d.ts
index 8f7e6a9..76f1207 100644
--- a/viewer/src/@types/tag.d.ts
+++ b/viewer/src/@types/tag.d.ts
@@ -18,24 +18,24 @@
18*/ 18*/
19 19
20declare namespace Tag { 20declare namespace Tag {
21 interface Node { 21 interface Node {
22 tag: Gallery.RawTag; 22 tag: Gallery.RawTag;
23 tagfiltered: Gallery.RawTag; 23 tagfiltered: Gallery.RawTag;
24 rootPart: boolean; 24 rootPart: boolean;
25 childPart: boolean; 25 childPart: boolean;
26 items: Gallery.Item[]; 26 items: Gallery.Item[];
27 children: Index; 27 children: Index;
28 } 28 }
29 interface Search extends Node { 29 interface Search extends Node {
30 parent?: Node; 30 parent?: Node;
31 operation: string; // Enum Operation 31 operation: string; // Enum Operation
32 display: string; 32 display: string;
33 } 33 }
34 type SearchByOperation = { [index: string]: Tag.Search[] }; 34 type SearchByOperation = { [index: string]: Tag.Search[] };
35 type Index = { [index: string]: Node }; 35 type Index = { [index: string]: Node };
36 36
37 interface Category { 37 interface Category {
38 tag: string; 38 tag: string;
39 index: Index; 39 index: Index;
40 } 40 }
41} 41}