UNPKG

container-ioc

Version:

Dependency Injection and Inversion of Control (IoC) container

6 lines (5 loc) 296 B
import { IMetadataAnnotator } from './metadata-annotator.interface'; export declare class StaticMetadataAnnotator implements IMetadataAnnotator { getMetadata<T>(metadataKey: string | symbol, target: any): T; defineMetadata<T>(metadataKey: string | symbol, value: T, target: any): void; }