"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const json_random_1 = require("../../json-random"); const json1 = json_random_1.RandomJson.generate(); console.log(json1); const json2 = json_random_1.RandomJson.generate({ nodeCount: 5, }); console.log(json2); const json3 = json_random_1.RandomJson.generate({ nodeCount: 5, rootNode: 'array', }); console.log(json3); const json4 = json_random_1.RandomJson.generate({ nodeCount: 6, odds: { array: 0, object: 10, string: 10, boolean: 0, null: 0, number: 0, }, }); console.log(json4); const json5 = json_random_1.RandomJson.genString(); console.log(json5); const json6 = json_random_1.RandomJson.genNumber(); console.log(json6); const json7 = json_random_1.RandomJson.genObject(); console.log(json7); const json8 = json_random_1.RandomJson.genArray(); console.log(json8); //# sourceMappingURL=json-random.js.map