idea-toolbox
Version:
IDEA's utility functions
18 lines (17 loc) • 341 B
TypeScript
import { Resource } from './resource.model';
export declare class Contacts extends Resource {
/**
* Contact person's phone.
*/
phone?: string;
/**
* Contact person's email.
*/
email?: string;
/**
* Fullname/nickname.
*/
name?: string;
load(x: any): void;
validate(): string[];
}