From 2b89c4772bba2bbe572db0aa8f81b661e336708e Mon Sep 17 00:00:00 2001 From: braks <78412429+bcakmakoglu@users.noreply.github.com> Date: Wed, 14 Sep 2022 21:15:29 +0200 Subject: [PATCH] chore(nc-gui): add title to route params type --- packages/nc-gui/nuxt-shim.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/nc-gui/nuxt-shim.d.ts b/packages/nc-gui/nuxt-shim.d.ts index f1a4826f57..a6623b3903 100644 --- a/packages/nc-gui/nuxt-shim.d.ts +++ b/packages/nc-gui/nuxt-shim.d.ts @@ -32,5 +32,6 @@ declare module 'vue-router' { interface RouteParams { projectId: string projectType: 'base' | 'nc' | string + title: string } }