Test complete

This commit is contained in:
proteriax
2021-07-22 14:28:43 -04:00
parent 6f28290529
commit 21003af738
9 changed files with 1119 additions and 21 deletions

View File

@ -0,0 +1,3 @@
{
"presets": [["@babel/preset-env", { "targets": { "node": 14 } }]]
}

View File

@ -0,0 +1,4 @@
@Service()
export class B {
#remote: Service
}

View File

@ -0,0 +1,22 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true,
});
exports.B = exports.B = void 0;
var _tslib = require("tslib");
var _remote = /*#__PURE__*/ new WeakMap();
exports.B = exports.B = B = (0, _tslib.__decorate)([Service()], B);
class B {
constructor() {
_remote.set(this, {
writable: true,
value: void 0,
});
}
}
exports.B = exports.B = B;