UNPKG

n8n-nodes-whoz

Version:

N8N community node for Whoz talent management platform

10 lines (9 loc) 494 B
import type { ICredentialDataDecryptedObject, ICredentialTestRequest, ICredentialType, IHttpRequestOptions, INodeProperties } from '../types/n8n-workflow'; export declare class WhozOAuth2Api implements ICredentialType { name: string; displayName: string; documentationUrl: string; properties: INodeProperties[]; authenticate(credentials: ICredentialDataDecryptedObject, requestOptions: IHttpRequestOptions): Promise<IHttpRequestOptions>; test: ICredentialTestRequest; }