inversify
Version:
A powerful and lightweight inversion of control container for JavaScript and Node.js apps powered by TypeScript.
12 lines (11 loc) • 334 B
JavaScript
import guid from "../utils/guid";
var KeyValuePair = (function () {
function KeyValuePair(serviceIdentifier, value) {
this.serviceIdentifier = serviceIdentifier;
this.value = new Array();
this.value.push(value);
this.guid = guid();
}
return KeyValuePair;
}());
export default KeyValuePair;