basant307/AI_Governance_Project
048
1"use strict";2module.exports = Object.create(null);3 4/**5 * Named roots.6 * This is where pbjs stores generated structures (the option `-r, --root` specifies a name).7 * Can also be used manually to make roots available across modules.8 * @name roots9 * @type {Object.<string,Root>}10 * @example11 * // pbjs -r myroot -o compiled.js ...12 *13 * // in another module:14 * require("./compiled.js");15 *16 * // in any subsequent module:17 * var root = protobuf.roots["myroot"];18 */19 