ap-ssg
Version:
A fast, modular, SEO-optimized static site generator that minifies CSS, JS, and HTML for improved performance. It also supports JSON-LD, sitemap generation, and more, making it ideal for production-ready websites.
26 lines (23 loc) • 773 B
TypeScript
export interface ContactObject {
/**
* The telephone number for contacting.
* Example: "+1-800-555-1234"
* Consider using a library like `libphonenumber` for phone number validation.
*/
telephone: string;
/**
* Type of contact (e.g., 'Customer Support', 'Sales', 'Technical Support').
* This is a plain string, but it's recommended to document possible values.
*/
contactType: string;
/**
* Array of available languages in which support can be provided.
* Example: ["English", "Spanish"]
*/
availableLanguage: string[];
/**
* The geographic or service area that this contact serves.
* Example: ["United States", "Canada"]
*/
areaServed: string[];
}