UNPKG

397 BJavaScriptView Raw
1var tv4 = require('tv4');
2var schemas = require('./schemas');
3var format = require('./format');
4
5tv4.addSchema('/shared/', schemas.shared);
6tv4.addSchema('/graph/', schemas.graph);
7tv4.addSchema('/network/', schemas.network);
8tv4.addSchema('/runtime/', schemas.runtime);
9tv4.addSchema('/component/', schemas.component);
10tv4.addSchema('/trace/', schemas.trace);
11format(tv4);
12
13module.exports = tv4;