Spaces:
Sleeping
Sleeping
File size: 318 Bytes
5916048 03ce1cf 5916048 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
export interface ApiCollection {
key: string
endpoints: Array<ApiRoute>
}
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
} |