Repository URL to install this package:
|
Version:
2.1.0 ▾
|
import { AddressProps as AddressPlaceholderProps } from 'abstractions/Address/typings'
export interface AddressType {
firstName?: string
lastName?: string
addressLine1?: string
addressLine2?: string
country?: string
city?: string
state?: string
postalCode?: string
}
export interface AddressPresetProps extends AddressPlaceholderProps {
title?: string
address: AddressType
}