UNPKG

power-di

Version:

A lightweight Dependency Injection library. Using es6 and other features, remove unnecessary concepts, easy and convenient to use.

12 lines (11 loc) 274 B
export interface RefMapType { [key: string]: RefMetadataType; } export interface RefMetadataType { count: number; deps: { type: string; prop: string | Symbol; }[]; } export declare function getRefMap(clsType: any, initMaps?: {}): RefMapType;