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 / typings.d.ts
Size: Mime:
/**
 * @todo types from here should be imported from generated gql
 */
import { EstimateInfoInput } from '@skava/graphql-bindings';
export interface CalculateShippingTaxType extends EstimateInfoInput {
    county?: string;
}
export interface GeoCodeType {
    results: [{
        address_components: AddressData[];
    }];
}
export interface MatchedDataType {
    types: string;
    short_name?: string;
    long_name?: string;
}
export interface AddressData {
    [key: string]: any;
}