UNPKG
txq
Version:
latest (1.4.8)
1.4.8
1.4.7
1.4.6
1.4.5
1.4.4
1.3.1
1.2.6
1.2.5
1.2.4
1.0.0
TXQ: Bitcoin Transaction Storage Queue Service
github.com/MatterPool/TXQ
MatterPool/TXQ
txq
/
src
/
types
/
express
/
index.d.ts
19 lines
(18 loc)
•
293 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
declare
namespace
Express
{
interface
Request
{
_data
?:
any
;
logData
?: {
method
:
string
;
body
:
string
;
url
:
string
;
query
:
string
;
reqid
?:
number
;
ip
:
any
;
err
?:
any
;
stack
?:
any
; }; }
interface
Response
{
api
?:
any
; } }