UNPKG

@squidcloud/client

Version:

A typescript implementation of the Squid client

10 lines (9 loc) 312 B
/** Represents a standardized HTTP response in OpenAPI format. */ export interface OpenApiResponse { /** HTTP headers returned in the response. */ headers: Record<string, any>; /** Body content of the response. */ body: any; /** HTTP status code of the response. */ statusCode: number; }