graycoreio/daffodil

View on GitHub
libs/core/src/address/address.ts

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * @deprecated Deprecated in version 0.78.0. Will be removed in version 0.81.0.
 * Prefer the `DaffAddress` of `daffodil/geography`
 */
export interface DaffAddress {
  firstname: string;
  lastname: string;
  street: string;
  city: string;
  postcode: string;
  telephone: string;
  state: string;
}