UNPKG

container-ioc

Version:

Dependency Injection and Inversion of Control (IoC) container

5 lines (4 loc) 188 B
export interface IMetadataAnnotator { defineMetadata<T>(metadataKey: string | symbol, value: T, target: any): void; getMetadata<T>(metadataKey: string | symbol, target: any): T; }