File tree 4 files changed +0
-8
lines changed
4 files changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,6 @@ import {
40
40
} from './protocol.js' ;
41
41
42
42
import {
43
- BufferEncoding ,
44
43
DataFormat ,
45
44
DataType ,
46
45
ValueTypeReader ,
Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ import type { Configuration } from './client.js';
14
14
export {
15
15
DataFormat ,
16
16
DataType ,
17
- type BufferEncoding ,
18
17
type Point ,
19
18
type ValueTypeReader ,
20
19
} from './types.js' ;
Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ import { sum } from './utils.js';
8
8
import {
9
9
arrayDataTypeMapping ,
10
10
isPoint ,
11
- BufferEncoding ,
12
11
DataFormat ,
13
12
DataType ,
14
13
ValueTypeReader ,
Original file line number Diff line number Diff line change 1
1
import { Buffer } from 'node:buffer' ;
2
2
3
- // This type isn't really exposed, but we can tease it out using some type gymnastics.
4
- export type BufferEncoding = NonNullable <
5
- Required < Parameters < Buffer [ 'toString' ] > [ 0 ] >
6
- > ;
7
-
8
3
export const enum DataType {
9
4
Bool = 16 ,
10
5
Bytea = 17 ,
You can’t perform that action at this time.
0 commit comments