export interface ApiCollection { key: string endpoints: Array } export interface ApiRoute { method: 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH' path: string, parameters?: any }