From 80551eeb98d53c89e99e8a418da77cf6eeda782a Mon Sep 17 00:00:00 2001 From: "bert.hausmans" Date: Sat, 16 May 2026 19:23:18 +0200 Subject: [PATCH] chore(types): sync auto-imports.d.ts for useV2Nav composable unplugin-auto-import scans src/composables/, so the new useV2Nav added a global + vue-module declaration. auto-imports.d.ts is tracked; keep it in sync (same precedent as Plan 1's useRightDrawer sync). Co-Authored-By: Claude Opus 4.7 --- apps/app/auto-imports.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/app/auto-imports.d.ts b/apps/app/auto-imports.d.ts index dbef1523..e8e1439d 100644 --- a/apps/app/auto-imports.d.ts +++ b/apps/app/auto-imports.d.ts @@ -160,6 +160,7 @@ declare global { const toReactive: typeof import('@vueuse/core')['toReactive'] const toRef: typeof import('vue')['toRef'] const toRefs: typeof import('vue')['toRefs'] + const toV2NavGroups: typeof import('./src/composables/useV2Nav')['toV2NavGroups'] const toValue: typeof import('vue')['toValue'] const triggerRef: typeof import('vue')['triggerRef'] const tryOnBeforeMount: typeof import('@vueuse/core')['tryOnBeforeMount'] @@ -353,6 +354,7 @@ declare global { const useTrunc: typeof import('@vueuse/math')['useTrunc'] const useUrlSearchParams: typeof import('@vueuse/core')['useUrlSearchParams'] const useUserMedia: typeof import('@vueuse/core')['useUserMedia'] + const useV2Nav: typeof import('./src/composables/useV2Nav')['useV2Nav'] const useVModel: typeof import('@vueuse/core')['useVModel'] const useVModels: typeof import('@vueuse/core')['useVModels'] const useVibrate: typeof import('@vueuse/core')['useVibrate'] @@ -544,6 +546,7 @@ declare module 'vue' { readonly toReactive: UnwrapRef readonly toRef: UnwrapRef readonly toRefs: UnwrapRef + readonly toV2NavGroups: UnwrapRef readonly toValue: UnwrapRef readonly triggerRef: UnwrapRef readonly tryOnBeforeMount: UnwrapRef @@ -729,6 +732,7 @@ declare module 'vue' { readonly useTrunc: UnwrapRef readonly useUrlSearchParams: UnwrapRef readonly useUserMedia: UnwrapRef + readonly useV2Nav: UnwrapRef readonly useVModel: UnwrapRef readonly useVModels: UnwrapRef readonly useVibrate: UnwrapRef