Packages > @fluidframework/core-interfaces > IResponse

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;
    };

mimeType

Signature

mimeType: string;

stack

Signature

stack?: string;

status

Signature

status: number;

value

Signature

value: any;