ts-randomizer
Version:
A tool to create random data by type parameters
23 lines • 1 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DescriptionFlag = exports.PropertyType = void 0;
var PropertyType;
(function (PropertyType) {
PropertyType["Boolean"] = "boolean";
PropertyType["Date"] = "date";
PropertyType["Function"] = "function";
PropertyType["Number"] = "number";
PropertyType["Object"] = "object";
PropertyType["String"] = "string";
PropertyType["Unknown"] = "unknown";
PropertyType["Null"] = "null";
PropertyType["Undefined"] = "undefined";
})(PropertyType || (exports.PropertyType = PropertyType = {}));
var DescriptionFlag;
(function (DescriptionFlag) {
DescriptionFlag[DescriptionFlag["Array"] = 0] = "Array";
DescriptionFlag[DescriptionFlag["Tuple"] = 1] = "Tuple";
DescriptionFlag[DescriptionFlag["Method"] = 2] = "Method";
DescriptionFlag[DescriptionFlag["Enum"] = 3] = "Enum";
})(DescriptionFlag || (exports.DescriptionFlag = DescriptionFlag = {}));
//# sourceMappingURL=types.js.map