(
metadataKey: string,
metatype: Type<any>,
)
| 615 | } |
| 616 | |
| 617 | public reflectMetadata<T = any>( |
| 618 | metadataKey: string, |
| 619 | metatype: Type<any>, |
| 620 | ): T[] { |
| 621 | return Reflect.getMetadata(metadataKey, metatype) || []; |
| 622 | } |
| 623 | |
| 624 | public async registerCoreModule(overrides?: ModuleOverride[]) { |
| 625 | const moduleDefinition = InternalCoreModuleFactory.create( |
no test coverage detected