UNPKG

@mineru98/n8n-ko

Version:

n8n Workflow Automation Tool - Korean Version

10 lines (9 loc) 473 B
import { Response } from 'express'; import { OAuthRequest } from '../../requests'; import { AbstractOAuthController } from './abstract-oauth.controller'; export declare class OAuth2CredentialController extends AbstractOAuthController { oauthVersion: number; getAuthUri(req: OAuthRequest.OAuth2Credential.Auth): Promise<string>; handleCallback(req: OAuthRequest.OAuth2Credential.Callback, res: Response): Promise<void>; private convertCredentialToOptions; }