@guardian/google-admanager-api
Version:
Google Ad Manager API Client Library for NodeJs
19 lines • 529 B
TypeScript
import type { AxiosResponse } from "axios";
/**
* Represents a report response from the server.
*/
export declare class ReportResponse {
private response;
constructor(response: AxiosResponse);
/**
* 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