1
0
Fork 0
mirror of https://github.com/n8n-io/n8n.git synced 2025-02-21 02:56:40 -08:00
n8n/packages/nodes-base/nodes/Drift/ContactInterface.ts
Ricardo Espinoza c10df92b48 Drift node
2020-02-28 19:55:14 -05:00

7 lines
98 B
TypeScript

export interface IContact {
email?: string;
name?: string;
phone?: string;
tags?: string[];
}