Initial commit

This commit is contained in:
Benjamin Sutter
2026-05-15 00:48:18 +02:00
commit 9e827c50f9
72 changed files with 10477 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
export interface ServiceMeta {
total: number
page: number
pageSize: number
hasMore: boolean
}
export interface ServiceResponse<T> {
data: T
meta?: ServiceMeta
error?: string | null
}
export type ListResponse<T> = ServiceResponse<T[]>
export type ItemResponse<T> = ServiceResponse<T>