UNPKG
kronosapi
Version:
latest (1.0.0)
1.0.0
Fast web api with Bun
kronosapi
/
lib
/
types.d.ts
9 lines
(7 loc)
•
204 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
export
interface
RouteArray
{ [
GET
:
string
]:
string
[]; [
POST
:
string
]:
string
[]; [
PUT
:
string
]:
string
[]; [
DELETE
:
string
]:
string
[]; }
export
type
RouteType
=
'GET'
|
'POST'
|
'PUT'
|
'DELETE'
;