UNPKG
@foxify/http
Version:
latest (1.0.0-beta.3)
1.0.0-beta.3
1.0.0-beta.2
1.0.0-beta.1
Foxify HTTP module
github.com/foxifyjs/foxify/tree/main/packages/http
foxifyjs/foxify
@foxify/http
/
src
/
constants
/
PROTOCOL.ts
7 lines
(5 loc)
•
119 B
text/typescript
View Raw
1
2
3
4
5
6
7
export
type
ProtocolT
=
string
|
"http"
|
"https"
;
export
const
enum
PROTOCOL
{
HTTP
=
"http"
,
HTTPS
=
"https"
, }