UNPKG

@skriptfabrik/n8n-nodes-otto-market

Version:
14 lines (13 loc) 579 B
import type { Icon, IAuthenticateGeneric, ICredentialDataDecryptedObject, ICredentialTestRequest, ICredentialType, IHttpRequestHelper, INodeProperties } from 'n8n-workflow'; export declare class OttoMarketApi implements ICredentialType { name: string; displayName: string; icon: Icon; documentationUrl: string; properties: INodeProperties[]; preAuthentication(this: IHttpRequestHelper, credentials: ICredentialDataDecryptedObject): Promise<{ accessToken: string; }>; authenticate: IAuthenticateGeneric; test: ICredentialTestRequest; }