Interface RestApiClientOutput

interface RestApiClientOutput {
    status: number;
    headers?: Record<string, string>;
    data?: any;
}

Properties

Properties

status: number
headers?: Record<string, string>
data?: any