UNPKG

@mineru98/n8n-ko

Version:

n8n Workflow Automation Tool - Korean Version

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