We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 289c40c commit 6754f99Copy full SHA for 6754f99
src/constants.ts
@@ -130,7 +130,7 @@ export const DataTypeOIDs = {
130
_varbit: 1563,
131
_uuid: 2951,
132
_jsonb: 3807,
133
-};
+} as const;
134
135
export const DataTypeNames = {
136
[DataTypeOIDs.bool]: 'bool',
@@ -247,4 +247,4 @@ export const DataTypeNames = {
247
[DataTypeOIDs._varbit]: '_varbit',
248
[DataTypeOIDs._uuid]: '_uuid',
249
[DataTypeOIDs._jsonb]: '_jsonb',
250
src/index.ts
@@ -1,3 +1,5 @@
1
+export { DatabaseError } from './protocol/database-error.js';
2
+
3
export * from './constants.js';
4
export * from './data-type-map.js';
5
export * from './types.js';
0 commit comments