Repository URL to install this package:
|
Version:
0.0.15 ▾
|
/**
* @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;
}