UNPKG

n8n

Version:

n8n Workflow Automation Tool

9 lines (8 loc) 312 B
import type { ModuleInterface } from '@n8n/decorators'; import { OAuthJweServiceProxy } from '../../oauth/oauth-jwe-service.proxy'; export declare class OAuthJweModule implements ModuleInterface { init(): Promise<void>; context(): Promise<{ oauthJweProxyProvider: OAuthJweServiceProxy; }>; }