"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.TRANSACTION_ISOLATION_LEVELS = void 0;
exports.TRANSACTION_ISOLATION_LEVELS = [
'read uncommitted',
'read committed',
'repeatable read',
'serializable',
'snapshot',
];