typecql
Version:
ORM for CQL databases.
14 lines • 431 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GlobalSettings = exports.Settings = void 0;
class Settings {
constructor() {
this.camelCaseEnabled = false;
this.autoCreateColumns = false;
this.autoCreateTables = false;
this.logging = undefined;
}
}
exports.Settings = Settings;
exports.GlobalSettings = new WeakMap();
//# sourceMappingURL=settings.js.map