UNPKG
tedis-mod
Version:
latest (0.2.1-beta)
0.2.1-beta
redis client for node.js with typescript and async
github.com/SamSteele01/tedis
SamSteele01/tedis
tedis-mod
/
build
/
core
/
protocol.d.ts
17 lines
(16 loc)
•
352 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/// <reference types="node" />
export
declare
class
Protocol
{
data
: {
state
:
boolean
;
res
: {
error
:
boolean
;
data
:
any
; }; };
private
_result;
private
_end;
constructor
(
);
write
(
data
:
Buffer
):
void
;
parse
():
void
;
encode
(...
parameters
:
Array
<
string
|
number
>):
string
; }