UNPKG

n8n-nodes-placid

Version:

n8n node to interact with Placid API for creative generation

10 lines (9 loc) 421 B
import { IExecuteFunctions, ILoadOptionsFunctions, IDataObject, IHttpRequestMethods } from 'n8n-workflow'; export declare function placidApiRequest(this: IExecuteFunctions | ILoadOptionsFunctions, method: IHttpRequestMethods, endpoint: string, body?: IDataObject): Promise<any>; export declare const requestDefaults: { baseURL: string; headers: { Accept: string; 'Content-Type': string; }; };