Esteves Enzo
init
5916048
raw
history blame
No virus
197 Bytes
export interface ApiCollection {
key: string
endpoints: Array<ApiRoute>
}
export interface ApiRoute {
method: 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH'
path: string,
parameters?: any
}