/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ /** * @internal */ export declare function executeOnInterval(api: () => Promise, intervalInMs: number, callName: string, onErrorFn?: (error: any) => void, shouldTerminateOnError?: (error: any) => boolean): ScheduledJob; /** * @internal */ export declare class ScheduledJob { private _jobRunning; constructor(); isRunning(): boolean; kill(): void; } //# sourceMappingURL=executeOnInterval.d.ts.map