UNPKG
postgrejs
Version:
latest (2.22.9)
2.22.9
2.22.7
2.22.6
2.22.5
2.22.4
2.22.3
2.22.2
2.22.1
2.22.0
2.21.1
2.21.0
2.20.0
2.19.0
2.18.1
2.18.0
2.17.1
2.17.0
2.16.0
2.15.4
2.15.2
2.15.1
2.15.0
2.12.0
Professional PostgreSQL client NodeJS
postgrejs.panates.com
panates/postgrejs
postgrejs
/
types
/
protocol
/
backend.d.ts
9 lines
(8 loc)
•
266 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
Protocol
}
from
'./protocol.js'
;
declare
type
ParseCallback
=
(
code
:
Protocol
.
BackendMessageCode
,
data
?:
any
) =>
void
;
export
declare
class
Backend
{
private
_buf?;
reset
():
void
;
parse
(
data
:
Buffer
,
callback
:
ParseCallback
):
void
; }
export
{};