UNPKG

@skriptfabrik/n8n-nodes-moco

Version:
15 lines (14 loc) 535 B
import type { IAuthenticateGeneric, ICredentialDataDecryptedObject, ICredentialTestRequest, ICredentialType, INodeProperties } from 'n8n-workflow'; export interface CredentialData extends ICredentialDataDecryptedObject { subDomain: string; apiKey: string; webhookSecret: string; } export declare class MocoApi implements ICredentialType { name: string; displayName: string; documentationUrl: string; properties: INodeProperties[]; authenticate: IAuthenticateGeneric; test: ICredentialTestRequest; }