slim-ef
Version:
An implementation of basic entity framework functionnalities in typescript
11 lines • 464 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.QueryType = void 0;
var QueryType;
(function (QueryType) {
QueryType[QueryType["ONE"] = 0] = "ONE";
QueryType[QueryType["ALL"] = 1] = "ALL";
QueryType[QueryType["RAW_ONE"] = 2] = "RAW_ONE";
QueryType[QueryType["RAW_ALL"] = 3] = "RAW_ALL";
})(QueryType = exports.QueryType || (exports.QueryType = {}));
//# sourceMappingURL=specification.interface.js.map