diff --git a/src/model/Node.ts b/src/model/Node.ts index 157076ed..a3644948 100755 --- a/src/model/Node.ts +++ b/src/model/Node.ts @@ -52,6 +52,10 @@ export abstract class Node { return id as string; } + getAttributes() { + return this._attributes; + } + getModel() { return this._model; }