Skip to content

AuthenticateOptions

@tsed/passport

Usage

typescript
import { AuthenticateOptions } from "@tsed/passport";

See /packages/security/passport/src/types/decorators/authenticate.ts.

Overview

ts
interface AuthenticateOptions extends PassportAuthenticateOptions {
    security?: Record<string, string[]>;
    originalUrl?: boolean;
}

security

ts
security?: Record<string, string[]>;

originalUrl

ts
originalUrl?: boolean;

Released under the MIT License.