Interface HttpTelegramResponse

interface HttpTelegramResponse {
    config: HttpTelegramInternalReqConfig;
    data: any;
    headers: AxiosResponseHeaders | Partial<RawAxiosHeaders & {
        Cache-Control: AxiosHeaderValue;
        Content-Encoding: AxiosHeaderValue;
        Content-Length: AxiosHeaderValue;
        Content-Type: AxiosHeaderValue;
        Server: AxiosHeaderValue;
    } & {
        set-cookie: string[];
    }>;
    request?: any;
    status: number;
    statusText: string;
}

Hierarchy

  • AxiosResponse
    • HttpTelegramResponse

Properties

data: any
headers: AxiosResponseHeaders | Partial<RawAxiosHeaders & {
    Cache-Control: AxiosHeaderValue;
    Content-Encoding: AxiosHeaderValue;
    Content-Length: AxiosHeaderValue;
    Content-Type: AxiosHeaderValue;
    Server: AxiosHeaderValue;
} & {
    set-cookie: string[];
}>
request?: any
status: number
statusText: string

Generated using TypeDoc