n8n
Version:
n8n Workflow Automation Tool
9 lines (8 loc) • 312 B
TypeScript
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;
}>;
}