container-ioc
Version:
Dependency Injection and Inversion of Control (IoC) container
7 lines (6 loc) • 324 B
TypeScript
import 'reflect-metadata';
import { IMetadataAnnotator } from './metadata-annotator.interface';
export declare class ReflectMetadataAnnotator implements IMetadataAnnotator {
getMetadata<T>(metadataKey: string | symbol, target: any): T;
defineMetadata<T>(metadataKey: string | symbol, value: T, target: any): void;
}