UNPKG

n8n-nodes-evolution-api

Version:
28 lines (27 loc) 587 B
import { IExecuteFunctions } from 'n8n-workflow'; export declare function instanceSettings(ef: IExecuteFunctions): Promise<{ json: { success: boolean; data: any; }; error?: undefined; } | { json: { success: boolean; error: { message: string; details: any; code: any; timestamp: string; }; }; error: { success: boolean; error: { message: string; details: any; code: any; timestamp: string; }; }; }>;