Interface ServiceResponse<T>

This interface represents the response sent by the microservice to the server

interface ServiceResponse<T> {
    data: T;
    status: number;
    statusText: string;
}

Type Parameters

  • T

Properties

data: T
status: number
statusText: string