@geek-fun/serverlessinsight
Version:
Full life cycle cross providers serverless application management for your fast-growing business.
17 lines (16 loc) • 667 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.KeyTypeEnum = exports.AttributeTypeEnum = void 0;
var AttributeTypeEnum;
(function (AttributeTypeEnum) {
AttributeTypeEnum["STRING"] = "STRING";
AttributeTypeEnum["INTEGER"] = "INTEGER";
AttributeTypeEnum["DOUBLE"] = "DOUBLE";
AttributeTypeEnum["BOOLEAN"] = "BOOLEAN";
AttributeTypeEnum["BINARY"] = "BINARY";
})(AttributeTypeEnum || (exports.AttributeTypeEnum = AttributeTypeEnum = {}));
var KeyTypeEnum;
(function (KeyTypeEnum) {
KeyTypeEnum["HASH"] = "HASH";
KeyTypeEnum["RANGE"] = "RANGE";
})(KeyTypeEnum || (exports.KeyTypeEnum = KeyTypeEnum = {}));