You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
525 B
JavaScript
15 lines
525 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var rxjs_1 = require("rxjs");
|
|
var DynamicDialogRef = /** @class */ (function () {
|
|
function DynamicDialogRef() {
|
|
this._onClose = new rxjs_1.Subject();
|
|
this.onClose = this._onClose.asObservable();
|
|
}
|
|
DynamicDialogRef.prototype.close = function (result) {
|
|
this._onClose.next(result);
|
|
};
|
|
return DynamicDialogRef;
|
|
}());
|
|
exports.DynamicDialogRef = DynamicDialogRef;
|
|
//# sourceMappingURL=dynamicdialog-ref.js.map
|