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.

5 lines (4 loc) 310 B
import { Logger } from '@nestjs/common'; import { Repository } from 'typeorm'; import { MicrosoftUser } from '../../entities/microsoft-user.entity'; export declare function getExternalUserIdFromUserId(userId: number, microsoftUserRepository: Repository<MicrosoftUser>, logger: Logger): Promise<string | null>;