Type Alias HttpResult

type HttpResult = {
    code?: number;
    context?: string;
    inner?: HttpResult;
    result?: unknown;
    timestamp?: string;
    title?: string;
}
Index

Properties

code?: number
context?: string
inner?: HttpResult
result?: unknown
timestamp?: string
title?: string