@clickup/ent-framework
Version:
A PostgreSQL graph-database-alike library with microsharding and row-level security
18 lines • 461 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ID = void 0;
exports.Enum = Enum;
/**
* Primary key field's name is currently hardcoded for simplicity. It's a
* convention to have it named as "id".
*/
exports.ID = "id";
/** @ignore */
function Enum() {
return {
dbValueToJs: (dbValue) => dbValue,
stringify: (jsValue) => jsValue,
parse: (str) => str,
};
}
//# sourceMappingURL=types.js.map