@skriptfabrik/n8n-nodes-otto-market
Version:
OTTO Market nodes for n8n
13 lines (12 loc) • 549 B
TypeScript
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;
}