Affinity node and trigger

This commit is contained in:
Ricardo Espinoza
2020-02-25 14:50:42 -05:00
parent e51237a0b9
commit 5b00ef7158
10 changed files with 1360 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
export interface IPerson {
first_name?: string;
last_name?: string;
emails?: string[];
organization_ids?: number[];
}