From 2d7d4b49d8c3751ec199b7fd34e934d1d2a05130 Mon Sep 17 00:00:00 2001 From: "bert.hausmans" Date: Sat, 16 May 2026 21:22:55 +0200 Subject: [PATCH] chore(types): sync auto-imports.d.ts for drawerRegistry MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit unplugin-auto-import scans src/composables/; the new drawerRegistry exports added global + vue-module declarations. auto-imports.d.ts is tracked — keep it in sync (same precedent as prior composable syncs). 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 bfa4672c..e9a18b71 100644 --- a/apps/app/auto-imports.d.ts +++ b/apps/app/auto-imports.d.ts @@ -136,10 +136,12 @@ declare global { const refThrottled: typeof import('@vueuse/core')['refThrottled'] const refWithControl: typeof import('@vueuse/core')['refWithControl'] const regexValidator: typeof import('./src/@core/utils/validators')['regexValidator'] + const registerDrawerComponent: typeof import('./src/composables/drawerRegistry')['registerDrawerComponent'] const registerPlugins: typeof import('./src/@core/utils/plugins')['registerPlugins'] const registerPlugins_: typeof import('./src/@core/utils/plugins')['registerPlugins_'] const requiredValidator: typeof import('./src/@core/utils/validators')['requiredValidator'] const resolveComponent: typeof import('vue')['resolveComponent'] + const resolveDrawerComponent: typeof import('./src/composables/drawerRegistry')['resolveDrawerComponent'] const resolvePostLoginTarget: typeof import('./src/utils/postLoginRedirect')['resolvePostLoginTarget'] const resolveRef: typeof import('@vueuse/core')['resolveRef'] const resolveUnref: typeof import('@vueuse/core')['resolveUnref'] @@ -525,9 +527,11 @@ declare module 'vue' { readonly refThrottled: UnwrapRef readonly refWithControl: UnwrapRef readonly regexValidator: UnwrapRef + readonly registerDrawerComponent: UnwrapRef readonly registerPlugins: UnwrapRef readonly requiredValidator: UnwrapRef readonly resolveComponent: UnwrapRef + readonly resolveDrawerComponent: UnwrapRef readonly resolvePostLoginTarget: UnwrapRef readonly resolveRef: UnwrapRef readonly resolveUnref: UnwrapRef