@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.
9 lines (8 loc) • 412 B
TypeScript
import { Response } from 'express';
import { MicrosoftAuthService } from '../services/auth/microsoft-auth.service';
export declare class MicrosoftAuthController {
private readonly microsoftAuthService;
private readonly logger;
constructor(microsoftAuthService: MicrosoftAuthService);
handleOauthCallback(code: string, state: string, res: Response): Promise<Response<any, Record<string, any>>>;
}