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/packages / core / location / LocationContainerLite.d.ts
Size: Mime:
import { CalculateShippingTaxType } from './typings';
export declare class LocationContainerLite {
    zipCode: string;
    geoCode: CalculateShippingTaxType;
    setZipCode(zipCode: string): void;
    setGeoCode(geoCode: CalculateShippingTaxType): void;
    clear(): void;
    /**
     * only if needed
     */
    loadGoogleAndFetchZipCodeAndGeoCode(): Promise<void>;
    fetchGeoCodeIfNeeded(): Promise<void>;
    fetchZipCodeIfNeeded(): Promise<void>;
}