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