diff options
author | Zero~Informatique | 2020-02-27 17:23:32 +0100 |
---|---|---|
committer | Zero~Informatique | 2020-02-27 17:53:41 +0100 |
commit | 7c2a2ff46469d5e8f44fb3ec7feae5f798e0baf8 (patch) | |
tree | 9b4c12bd263013687f8cec3f0002122bd458aa49 /viewer/src/@types | |
parent | d862c99d6ee74f25261c00fcfee3a6e551501f16 (diff) | |
download | ldgallery-7c2a2ff46469d5e8f44fb3ec7feae5f798e0baf8.tar.gz |
viewer: architectural fixes and improvements
Make use of VueX's strict mode (which is different from vuex-class-component strict mode)
Fixed issues and bad-practices with search filter tags mutations
Correctly implement the new index.json format
Diffstat (limited to 'viewer/src/@types')
-rw-r--r-- | viewer/src/@types/gallery.d.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/viewer/src/@types/gallery.d.ts b/viewer/src/@types/gallery.d.ts index d7645b6..399fb66 100644 --- a/viewer/src/@types/gallery.d.ts +++ b/viewer/src/@types/gallery.d.ts | |||
@@ -27,8 +27,9 @@ declare namespace Gallery { | |||
27 | } | 27 | } |
28 | interface Index { | 28 | interface Index { |
29 | properties: GalleryProperties, | 29 | properties: GalleryProperties, |
30 | tree: Item | 30 | tree: Directory |
31 | } | 31 | } |
32 | |||
32 | interface Other extends Item { | 33 | interface Other extends Item { |
33 | properties: OtherProperties, | 34 | properties: OtherProperties, |
34 | } | 35 | } |