UNPKG

@skriptfabrik/n8n-nodes-moco

Version:
16 lines (15 loc) 558 B
import type { IAuthenticateGeneric, Icon, 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; icon?: Icon; documentationUrl: string; properties: INodeProperties[]; authenticate: IAuthenticateGeneric; test: ICredentialTestRequest; }