swc/bundler/tests/.cache/untrusted/a4188ce06fa9a46153ea0b5a7e1f486419f1b260.ts
강동윤 bbaf619f63
fix(bundler): Fix bugs (#1437)
swc_bundler:
 - [x] Fix wrapped esms. (denoland/deno#9307)
 - [x] Make test secure.
2021-03-02 17:33:03 +09:00

27 lines
476 B
TypeScript

// Loaded from https://raw.githubusercontent.com/denjucks/dex/master/lib/query/constants.js
/**
* internal constants, do not use in application code
*/
export const lockMode = {
forShare: 'forShare',
forUpdate: 'forUpdate',
}
export const waitMode = {
skipLocked: 'skipLocked',
noWait: 'noWait',
}
export default {
lockMode: {
forShare: 'forShare',
forUpdate: 'forUpdate',
},
waitMode: {
skipLocked: 'skipLocked',
noWait: 'noWait',
},
};