import { ModuleWithParams, ModuleMetadata } from '#types/module-metadata.js'; import { AnyFn, ModuleType } from '#types/mix.js'; /** * Merges metadata passed in `rootModule` or `featureModule` decorators with metadata passed * in `ModuleWithParams`. Additionally, converts the `Providers` instances passed in the `providersPer*` * property to arrays. */ export declare function getModuleMetadata(modOrObj: ModuleType | ModuleWithParams, isRoot?: boolean): ModuleMetadataWithContext | undefined; export interface ModuleMetadataValue { data: ModuleMetadata; } export interface ModuleMetadataWithContext extends ModuleMetadata { decoratorFactory: AnyFn; declaredInDir: string; } //# sourceMappingURL=get-module-metadata.d.ts.map