UNPKG

arvox-backend

Version:

Un framework backend moderne et modulaire basé sur Hono, TypeScript et l'architecture hexagonale avec authentification Better Auth + Drizzle intégrée

27 lines 555 B
export interface StandardResponse<T = any> { success: boolean; data?: T; error?: string; } export interface PaginatedResponse<T> { success: boolean; data: { items: T[]; total: number; page: number; limit: number; totalPages: number; }; error?: string; } export interface ErrorResponse { success: false; error: string; code?: string; details?: any; } export interface SuccessResponse<T = any> { success: true; data: T; } //# sourceMappingURL=response.type.d.ts.map