UNPKG

@skriptfabrik/n8n-nodes-otto-market

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