interface Ssr { id?: string path: string content: string validUntil: any // go Time } interface ApiOptions { method?: string filter?: any sort?: string lookup?: string limit?: number offset?: number projection?: string headers?: { [key: string]: string } params?: { [key: string]: string } } interface ApiResult { data: T count: number }