/** * Generated by orval v8.5.3 🍺 * Do not edit manually. * AnthoLume API v1 * REST API for AnthoLume document management system * OpenAPI spec version: 1.0.0 */ import type { DatabaseInfo } from './databaseInfo'; import type { GraphDataResponse } from './graphDataResponse'; import type { StreaksResponse } from './streaksResponse'; import type { UserStatisticsResponse } from './userStatisticsResponse'; export interface HomeResponse { database_info: DatabaseInfo; streaks: StreaksResponse; graph_data: GraphDataResponse; user_statistics: UserStatisticsResponse; }