UNPKG

@enonic/mock-xp

Version:

Mock Enonic XP API JavaScript Library

17 lines (16 loc) 431 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Reference = void 0; var Reference = (function () { function Reference(value) { this.nodeId = value; } Reference.prototype.getNodeId = function () { return this.nodeId; }; Reference.prototype.toString = function () { return this.nodeId; }; return Reference; }()); exports.Reference = Reference;