7 lines
98 B
TypeScript
Executable File
7 lines
98 B
TypeScript
Executable File
export interface IContact {
|
|
email?: string;
|
|
name?: string;
|
|
phone?: string;
|
|
tags?: string[];
|
|
}
|