@bitwild/rockets-auth
Version:
Rockets Auth - Complete authentication and authorization solution for NestJS with JWT, OAuth, OTP, role-based access control, and more
10 lines • 579 B
TypeScript
import { AuthenticatedUserInterface, AuthenticationResponseInterface } from '@concepta/nestjs-common';
import { IssueTokenServiceInterface } from '@concepta/nestjs-authentication';
export declare class AuthOAuthController {
private issueTokenService;
constructor(issueTokenService: IssueTokenServiceInterface);
authorize(): void;
callback(user: AuthenticatedUserInterface): Promise<AuthenticationResponseInterface>;
callbackPost(user: AuthenticatedUserInterface): Promise<AuthenticationResponseInterface>;
}
//# sourceMappingURL=auth-oauth.controller.d.ts.map