UNPKG
@appolo/router
Version:
latest (8.0.2)
8.0.2
8.0.1
8.0.0
fast routing
github.com/shmoop207/appolo-router
shmoop207/appolo-router
@appolo/router
/
lib
/
enums.ts
18 lines
(16 loc)
•
283 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
export
enum
Methods
{
"GET"
=
"GET"
,
"POST"
=
"POST"
,
"PUT"
=
"PUT"
,
"PATCH"
=
"PATCH"
,
"DELETE"
=
"DELETE"
,
"HEAD"
=
"HEAD"
,
"OPTIONS"
=
"OPTIONS"
,
"PURGE"
=
"PURGE"
, }
export
enum
LeafType{ Tree =
0
, Static =
1
, Param =
2
, Regex =
3
, }