UNPKG

n8n-nodes-whatsapp

Version:

Nodes to trigger workflows from whatsapp events or send messages (using whatsapp web).

13 lines 425 B
import { ICredentialType, INodeProperties } from 'n8n-workflow'; export declare class WhatsApp implements ICredentialType { name: string; displayName: string; documentationUrl: string; properties: INodeProperties[]; } export interface IWhatsAppCredential { phoneNumber: string; authStrategy: 'local' | 'mongodb'; mongoConnectionString?: string; } //# sourceMappingURL=WhatsApp.credentials.d.ts.map