tibi-docs/types/global.d.ts
Sebastian Frank 86e0a17265
All checks were successful
deploy to production / deploy (push) Successful in 45s
yarn package upgrades, ssr update
2023-11-15 07:00:12 +00:00

28 lines
427 B
TypeScript

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<T> {
data: T
count: number
}