inversify
Version:
A powerful and lightweight inversion of control container for JavaScript and Node.js apps powered by TypeScript.
9 lines (8 loc) • 330 B
TypeScript
import interfaces from "../interfaces/interfaces";
declare class KeyValuePair<T> implements interfaces.KeyValuePair<T> {
serviceIdentifier: interfaces.ServiceIdentifier<any>;
value: Array<T>;
guid: string;
constructor(serviceIdentifier: interfaces.ServiceIdentifier<any>, value: T);
}
export default KeyValuePair;