import type { AbstractModuleId, ModuleCompiled, ModuleEntry, ModuleProvider } from '@lwrjs/types'; /** * This module provider is a shortcut solution to enable LWR@MRT local development. External * dependencies will be assigned a hardcoded empty string version during local component * compilation. The version will be ignored during linking. * */ export default class FallthroughModuleProvider implements ModuleProvider { name: string; getModule(moduleId: T): Promise; getModuleEntry(moduleId: T): Promise; } //# sourceMappingURL=fallthrough-module-provider.d.ts.map