xylabs/sdk-react

View on GitHub
packages/rich-result/src/jsonld/PostalAddress.ts

Summary

Maintainability
A
0 mins
Test Coverage
import type { ContactPoint } from './ContactPoint.ts'
import type { Country } from './Country.ts'
import type { Text } from './Text.ts'

interface PostalAddress extends ContactPoint {
  addressCountry?: Country | Text
  addressLocality?: Text
  addressRegion?: Text
  postOfficeBoxNumber?: Text
  postalCode?: Text
  streetAddress?: Text
}

export type { PostalAddress }