var LazyServiceIdentifer = (function () {
|
function LazyServiceIdentifer(cb) {
|
this._cb = cb;
|
}
|
LazyServiceIdentifer.prototype.unwrap = function () {
|
return this._cb();
|
};
|
return LazyServiceIdentifer;
|
}());
|
export { LazyServiceIdentifer };
|
//# sourceMappingURL=lazy_service_identifier.js.map
|