1
1
mirror of https://github.com/n8n-io/n8n.git synced 2024-10-08 02:28:57 +03:00
n8n/packages/nodes-base/nodes/Keap/ContactNoteInterface.ts
Michael Kret 91d7e16c81
n8n-3867-progressively-apply-prettier-to-all (#3873)
* 🔨 formatting nodes with prettier
2022-08-17 17:50:24 +02:00

8 lines
117 B
TypeScript

export interface INote {
body?: string;
contact_id?: number;
title?: string;
type?: string;
user_id?: number;
}