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/utils / dist / address / typings.d.ts
Size: Mime:
export interface AddressType {
    addressline1: never;
    addressline2: never;
    addressLine1: string;
    addressLine2?: string;
    city: string;
    country: string;
    zipcode?: string;
    postalCode?: string;
    zipCode?: string;
    state?: string;
    firstName?: string;
    lastName?: string;
    telephone?: string;
    phoneNumber?: string;
    email?: string;
}