diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-01-25 12:25:14 +0100 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2024-01-25 15:48:11 +0000 |
commit | 24f49977786c9e49d5482fbccf2d6a24be960574 (patch) | |
tree | 7c3cb68bba0e8117bc17a397b0638ed19603bd22 /apps | |
parent | ddc22c857ea699f55a02f780660a1ca609c44fca (diff) | |
download | nextcloud-server-24f49977786c9e49d5482fbccf2d6a24be960574.tar.gz nextcloud-server-24f49977786c9e49d5482fbccf2d6a24be960574.zip |
fix(files): Add declaration for `$navigation`
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/src/vue.d.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/files/src/vue.d.ts b/apps/files/src/vue.d.ts new file mode 100644 index 00000000000..af81b34de56 --- /dev/null +++ b/apps/files/src/vue.d.ts @@ -0,0 +1,7 @@ +import type { Navigation } from '@nextcloud/files' + +declare module 'vue/types/vue' { + interface Vue { + $navigation: Navigation + } +} |