node-testdata-generator
Version:
Generates testdata with a schema that is read from a file.
23 lines (22 loc) • 803 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var GeneratorTypes = /** @class */ (function () {
function GeneratorTypes() {
}
GeneratorTypes.String = "string";
GeneratorTypes.Number = "number";
GeneratorTypes.Decimal = "decimal";
GeneratorTypes.AutoIncrement = "autoIncrement";
GeneratorTypes.Boolean = "boolean";
GeneratorTypes.Object = "object";
GeneratorTypes.Array = "array";
GeneratorTypes.Date = "date";
GeneratorTypes.Position = "position";
GeneratorTypes.Constant = "constant";
GeneratorTypes.ReferenceTo = "referenceTo";
GeneratorTypes.Select = "select";
GeneratorTypes.Faker = "faker";
GeneratorTypes.ObjectId = "objectId";
return GeneratorTypes;
}());
exports.GeneratorTypes = GeneratorTypes;