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