UNPKG

nest-azure-ad-jwt-validator

Version:
15 lines (14 loc) 383 B
import { JwtPayload } from './jwt-payload'; export declare class AzureAdUser { readonly id: string; readonly email: string; readonly fullName: string; readonly roles: string[]; readonly audience: string; readonly tenant: string; readonly subject: string; readonly appId?: string; constructor(jwt?: JwtPayload & { appid?: string; }); }