UNPKG

dfp-lib

Version:

This project hosts the Node.JS client library for the SOAP-based DFP API at Google.

5 lines (4 loc) 287 B
export declare module PromiseUtils { function whileLoop(loop: (v: any) => Promise<any>, condition?: (v: any) => boolean, initialValue?: any): Promise<any>; function doWhileLoop(loop: (v: any) => Promise<any>, condition?: (v: any) => boolean, initialValue?: any): Promise<any>; }