Ramble-FE / types / responseTypes.ts
responseTypes.ts
Raw
export interface ApiResponse {
    code: string;
    message: string;
    body: any
}

export interface BaseResponse {
    success: boolean;
    error?: string;
}