Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
enzostvs/hub-api-playground
Nymbo
/
hub-api-playground
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
53057cb
hub-api-playground
/
utils
/
type.ts
Esteves Enzo
init
5916048
over 1 year ago
raw
Copy download link
history
blame
Safe
197 Bytes
export
interface
ApiCollection
{
key
:
string
endpoints
:
Array
<
ApiRoute
>
}
export
interface
ApiRoute
{
method
:
'GET'
|
'POST'
|
'PUT'
|
'DELETE'
|
'PATCH'
path
:
string
,
parameters?:
any
}