Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/ui-presets / dist / presets / Address / typings.d.ts
Size: Mime:
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;
}