fix(schema): fix typo for import.meta.globEager (#2243)

This commit is contained in:
Daniel Roe 2021-12-01 11:58:24 +00:00 committed by GitHub
parent d52acbffd8
commit af6f91e8fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,5 +25,5 @@ export interface ViteImportMeta {
glob?(pattern: string): Record<string, () => Promise<Record<string, any>>>
/** vite glob import utility - https://vitejs.dev/guide/features.html#glob-import */
globeager?(pattern: string): Record<string, Record<string, any>>
globEager?(pattern: string): Record<string, Record<string, any>>
}