node-ejs-renderer/node_modules/sonic-forest/lib/TreeNode.js
2024-06-09 13:55:01 -04:00

14 lines
306 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.TreeNode = void 0;
class TreeNode {
constructor(k, v) {
this.k = k;
this.v = v;
this.p = undefined;
this.l = undefined;
this.r = undefined;
}
}
exports.TreeNode = TreeNode;