Interface CompanionHTTPResponse

interface CompanionHTTPResponse {
    body?: string;
    headers?: Record<string, any>;
    status?: number;
}

Properties

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