UNPKG

@niur/google-admanager-api

Version:
19 lines 534 B
import { AxiosResponse } from 'axios'; /** * Represents a report response from the server. */ export declare class ReportResponse { private response; constructor(response: AxiosResponse<any, any>); /** * Saves the report to a specified path * * @param path The path to which report is saved. */ save(path: string): Promise<void>; /** * Checks to ensure that the underlying stream has not been closed. */ private ensureStreamIsOpen; } //# sourceMappingURL=reportResponse.d.ts.map