bae705aa97
- Add NFC ePassport roadmap (ICAO 9303, eIDAS) - Add TensorFlow.js edge face detection (BlazeFace) - Add structured audit logger (GDPR-compliant) - Risk scoring support Part of KYC Apple Native UX v1.1.0
19 lines
471 B
JavaScript
19 lines
471 B
JavaScript
"use strict";
|
|
module.exports = Object.create(null);
|
|
|
|
/**
|
|
* Named roots.
|
|
* This is where pbjs stores generated structures (the option `-r, --root` specifies a name).
|
|
* Can also be used manually to make roots available across modules.
|
|
* @name roots
|
|
* @type {Object.<string,Root>}
|
|
* @example
|
|
* // pbjs -r myroot -o compiled.js ...
|
|
*
|
|
* // in another module:
|
|
* require("./compiled.js");
|
|
*
|
|
* // in any subsequent module:
|
|
* var root = protobuf.roots["myroot"];
|
|
*/
|