declare class Exec { /** * * @param promise * @param msecs * @param msg */ static RunWithAbort: (promise: any, msecs: number, msg?: string) => void; /** * Ejemplo... * @param url */ private static immediatelyResolvedPromise; static withTimeout1(promise: any, msecs: number, msg?: string): Promise; /** * * @param msecs * @param promise * @returns */ static withTimeout(promise: any, msecs: number, msg?: string): Promise; /** * * @param msecs * @param promise * @returns */ static waitForTime(promise: any, msecs: number, msg?: string): any; /** * * @param secs * @param f * @param args * @param msg */ static waitForTimeSeconds(secs: number, f: Function, args: any, msg?: string): void; /** * * @param minutes * @param f * @param args * @param msg */ static waitForTimeMinutes(minutes: number, f: Function, args: any, msg?: string): void; } export default Exec; //# sourceMappingURL=Exec.d.ts.map