UNPKG
mincu-debug-tools
Version:
latest (2.13.2)
2.13.2
2.12.0
2.11.0
2.10.1
2.8.1
2.8.0
2.7.2
2.7.0
2.7.0-alpha.1
2.7.0-alpha.0
2.6.5
2.6.4
2.6.3
2.6.2
2.6.1
2.6.0
2.5.0
2.4.1
2.4.0
2.3.4
2.3.4-alpha.3
2.3.4-alpha.2
2.3.3
2.2.0
[Mincu - 南大家园 WEB JS API](https://github.com/ncuhome/mincu)
github.com/ncuhome
ncuhome/mincu
mincu-debug-tools
/
dist
/
declarations
/
src
/
api
/
common.d.ts
6 lines
(5 loc)
•
278 B
TypeScript
View Raw
1
2
3
4
5
6
/// <reference types="node" />
import
{
IncomingMessage
,
ServerResponse
}
from
'http'
;
declare
type
Listeners
=
(
req
:
IncomingMessage
,
res
:
ServerResponse
) =>
void
;
export
declare
const
makeApi
:
(
cb
:
Listeners
) =>
(
req
:
IncomingMessage
,
res
:
ServerResponse
) =>
void
;
export
{};