chore(types): sync auto-imports.d.ts for drawerRegistry

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 <noreply@anthropic.com>
This commit is contained in:
2026-05-16 21:22:55 +02:00
parent 4ba927623b
commit 2d7d4b49d8

View File

@@ -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<typeof import('@vueuse/core')['refThrottled']>
readonly refWithControl: UnwrapRef<typeof import('@vueuse/core')['refWithControl']>
readonly regexValidator: UnwrapRef<typeof import('./src/@core/utils/validators')['regexValidator']>
readonly registerDrawerComponent: UnwrapRef<typeof import('./src/composables/drawerRegistry')['registerDrawerComponent']>
readonly registerPlugins: UnwrapRef<typeof import('./src/@core/utils/plugins')['registerPlugins']>
readonly requiredValidator: UnwrapRef<typeof import('./src/@core/utils/validators')['requiredValidator']>
readonly resolveComponent: UnwrapRef<typeof import('vue')['resolveComponent']>
readonly resolveDrawerComponent: UnwrapRef<typeof import('./src/composables/drawerRegistry')['resolveDrawerComponent']>
readonly resolvePostLoginTarget: UnwrapRef<typeof import('./src/utils/postLoginRedirect')['resolvePostLoginTarget']>
readonly resolveRef: UnwrapRef<typeof import('@vueuse/core')['resolveRef']>
readonly resolveUnref: UnwrapRef<typeof import('@vueuse/core')['resolveUnref']>