AppResponse The response from the API

interface AppResponse {
    data?: any;
    error?: {
        message: string;
    };
    status: number;
}

Properties

Properties

data?: any
error?: {
    message: string;
}
status: number