UNPKG

@checkfirst/nestjs-outlook

Version:

An opinionated NestJS module for Microsoft Outlook integration that provides easy access to Microsoft Graph API for emails, calendars, and more.

7 lines (6 loc) 236 B
export declare function delay(ms: number): Promise<void>; export declare function retryWithBackoff<T>(operation: () => Promise<T>, options?: { maxRetries?: number; retryDelayMs?: number; retryCount?: number; }): Promise<T>;