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    
Size: Mime:
import { ShippingMethod } from '@skava/graphql-bindings';
/**
 * was named `ShippingMethodType`
 */
export interface ShippingMethodListType extends Array<ShippingMethod> {
}
export interface ShippingMethodInputType {
    /** @deprecated */
    name?: never;
    /** @deprecated */
    identifier?: never;
    /** new !!! */
    shippingMethodItemId: string;
    cartItemId?: number;
}
export declare type TimeStamp = number;
export interface ShippingMethodItemLiteType {
    identifier: string;
    label: string;
    isSelected: boolean;
    priceValue: string;
    deliveryTime: TimeStamp;
    deliveryTimePretty: string;
    description?: string;
    code?: unknown;
}
export declare type IndexedItemLevelShippingSelectedShippingMethodsItemType = {
    cartItemId: number;
    selectedShippingMethodItem: ShippingMethodItemLiteType;
};