fix(files): Add declaration for $navigation

Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
This commit is contained in:
Ferdinand Thiessen 2024-01-25 12:25:14 +01:00
parent 7c79521cbe
commit f92865e2a2
No known key found for this signature in database
GPG Key ID: 45FAE7268762B400

7
apps/files/src/vue.d.ts vendored Normal file
View File

@ -0,0 +1,7 @@
import type { Navigation } from '@nextcloud/files'
declare module 'vue/types/vue' {
interface Vue {
$navigation: Navigation
}
}