UNPKG

228 BJavaScriptView Raw
1/**
2 * internal constants, do not use in application code
3 */
4module.exports = {
5 lockMode: {
6 forShare: 'forShare',
7 forUpdate: 'forUpdate',
8 },
9 waitMode: {
10 skipLocked: 'skipLocked',
11 noWait: 'noWait',
12 },
13};