import { Profile } from 'passport'; /** @public */ export type PassportProfile = Profile & { avatarUrl?: string; }; /** @public */ export type PassportDoneCallback = (err?: Error, result?: TResult, privateInfo?: TPrivateInfo) => void;