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.
34 lines (28 loc) • 639 B
TypeScript
interface AddressObject {
/**
* The locality (city or town) of the address.
* Example: "New York"
*/
addressLocality?: string;
/**
* The postal code or zip code of the address.
* Example: "10001"
*/
postalCode?: string;
/**
* The street address or the primary address line.
* Example: "123 Main St"
*/
streetAddress?: string;
/**
* The region (state or province) of the address.
* Example: "New York"
*/
addressRegion?: string;
/**
* The country of the address.
* Example: "United States"
*/
country?: string;
}
export = AddressObject;