libs/core/src/address/address.ts
/**
* @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;
}