UNPKG
edge-master
Version:
latest (0.10.0)
0.10.0
0.9.3
0.9.2
0.9.1
0.9.0
0.1.1
0.0.1
A Micro Framework for Edges
github.com/sharif3271/edge-master
sharif3271/edge-master
edge-master
/
dist
/
types
/
route.d.ts
10 lines
(9 loc)
•
276 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
/// <reference types="@cloudflare/workers-types" />
import
{
IMatcher
,
ContextWithReq
}
from
"./base"
;
export
interface
IRouteHandler
{
execute
:
(
ctx
:
ContextWithReq
) =>
Promise
<
Response
>; }
export
type
Route
= {
matcher
:
IMatcher
;
routeHandler
:
IRouteHandler
; };