UNPKG

n8n-nodes-placid

Version:

n8n node to interact with Placid API for creative generation

14 lines (13 loc) 342 B
export interface GeneralPropertyOption { name: string; value: string; description: string; restrictedTo: string[]; fieldType?: 'string' | 'color' | 'options'; placeholder?: string; options?: { name: string; value: string; }[]; } export declare const generalProperties: GeneralPropertyOption[];