Skip to main content

IResponse Interface

Signature

export interface IResponse

Properties

Property Modifiers Type Description
headers optional { [key: string]: any; }
mimeType string
stack optional string
status number
value any

Property Details

headers

Signature

headers?: {
[key: string]: any;
};

Type: { [key: string]: any; }

mimeType

Signature

mimeType: string;

Type: string

stack

Signature

stack?: string;

Type: string

status

Signature

status: number;

Type: number

value

Signature

value: any;

Type: any