@nestjs-mod/sso
Version:
NestJS SDK for Single Sign-On on NestJS and Angular with webhooks and social authorization (Wrapper for https://www.npmjs.com/package/@nestjs-mod/sso-rest-sdk)
11 lines (10 loc) • 460 B
TypeScript
import { ArgumentsHost } from '@nestjs/common';
import { BaseExceptionFilter } from '@nestjs/core';
import { SsoStaticEnvironments } from './sso.environments';
import { SsoError } from './sso.errors';
export declare class SsoExceptionsFilter extends BaseExceptionFilter {
private readonly ssoStaticEnvironments;
private logger;
constructor(ssoStaticEnvironments: SsoStaticEnvironments);
catch(exception: SsoError, host: ArgumentsHost): void;
}