nextcloud-node-client
Version:
Nextcloud client API for node.js TypeScript applications
22 lines (21 loc) • 659 B
TypeScript
export declare class RequestLogEntry {
body?: string;
description: string;
jsonBody?: any;
method: string;
url: string;
constructor(url: string, method: string, description: string, body?: string);
}
export declare class ResponseLogEntry {
body?: string;
contentType?: string;
contentLocation?: string;
jsonBody?: any;
status: number;
constructor(status: number, body?: string, contentType?: string, contentLocation?: string);
}
export default class RequestResponseLogEntry {
request: RequestLogEntry;
response: ResponseLogEntry;
constructor(request: RequestLogEntry, response: ResponseLogEntry);
}