interface ImportMeta { url: string readonly hot?: import('./hot').ViteHotContext readonly env: ImportMetaEnv glob: import('./importGlob').ImportGlobFunction /** * @deprecated Use `import.meta.glob('*', { eager: true })` instead */ globEager: import('./importGlob').ImportGlobEagerFunction } ## 问题 对于glob属性: import('./importGlob') 不是返回Promise对象吗? 怎么可以 .ImportGlobFunction? #### gpt回答 