From 53335dd30890e6304b5e45fedb72072b9e771fe8 Mon Sep 17 00:00:00 2001 From: "bert.hausmans" Date: Sat, 16 May 2026 12:00:55 +0200 Subject: [PATCH] chore(types): sync auto-imports.d.ts for useRightDrawer composable MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit unplugin-auto-import scans src/composables/, so the new useRightDrawer (Task 7) added a global + vue-module declaration. auto-imports.d.ts is tracked (committed for editor/CI type resolution without a build), so keep it in sync — same precedent as committing typed-router.d.ts. No new symbol from useShellUiStore: src/stores is not in the auto-import dirs (stores are imported explicitly), which is correct. Co-Authored-By: Claude Opus 4.7 --- apps/app/auto-imports.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/app/auto-imports.d.ts b/apps/app/auto-imports.d.ts index 2bf7c39b..dbef1523 100644 --- a/apps/app/auto-imports.d.ts +++ b/apps/app/auto-imports.d.ts @@ -307,6 +307,7 @@ declare global { const useRefHistory: typeof import('@vueuse/core')['useRefHistory'] const useResizeObserver: typeof import('@vueuse/core')['useResizeObserver'] const useResponsiveLeftSidebar: typeof import('./src/@core/composable/useResponsiveSidebar')['useResponsiveLeftSidebar'] + const useRightDrawer: typeof import('./src/composables/useRightDrawer')['useRightDrawer'] const useRound: typeof import('@vueuse/math')['useRound'] const useRoute: typeof import('vue-router/auto')['useRoute'] const useRouter: typeof import('vue-router/auto')['useRouter'] @@ -684,6 +685,7 @@ declare module 'vue' { readonly useRefHistory: UnwrapRef readonly useResizeObserver: UnwrapRef readonly useResponsiveLeftSidebar: UnwrapRef + readonly useRightDrawer: UnwrapRef readonly useRound: UnwrapRef readonly useRoute: UnwrapRef readonly useRouter: UnwrapRef