Esteves Enzo
add wip badge
62b480a
raw
history blame
No virus
334 Bytes
export interface ApiCollection {
key: string
endpoints: Array<ApiRoute>
wip?: boolean
}
export interface ApiRoute {
method: 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH'
path: string,
parameters?: any,
body?: Array<Body>
}
export interface Body {
key: string
label: string
required?: boolean
defaultValue?: any
}