vika-server / src /utils /response-wrapper.utils.ts
Viktoria435
Initialize NestJS project with basic structure and configurations
22df730
raw
history blame contribute delete
205 Bytes
export interface ErrorResponse {
message: string;
code?: string;
statusCode?: number;
}
export interface ApiResponse<T> {
data?: T | null;
successful: boolean;
error?: ErrorResponse | null;
}