Drift node

This commit is contained in:
Ricardo Espinoza
2020-02-28 19:55:14 -05:00
parent 44f5d4b528
commit c10df92b48
7 changed files with 412 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
export interface IContact {
email?: string;
name?: string;
phone?: string;
tags?: string[];
}