@niur/google-admanager-api
Version:
Google Ad Manager API Client Library for NodeJs
19 lines • 534 B
TypeScript
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