UNPKG

@scayle/storefront-core

Version:

Collection of essential utilities to work with the Storefront API

9 lines (8 loc) 652 B
import { Factory } from 'fishery'; import type { Order, OrderItem, OrderAdvancedAttribute, OrderCategory } from '../../types/sapi/order'; export declare const orderCategoryFactory: Factory<OrderCategory>; export declare const orderAdvancedAttributeFactory: Factory<OrderAdvancedAttribute>; export declare const orderProductFactory: Factory<Record<string, unknown>>; export declare const orderVariantFactory: Factory<Record<string, unknown>>; export declare const orderItemFactory: Factory<OrderItem<Record<string, unknown>, Record<string, unknown>>>; export declare const orderFactory: Factory<Order<Record<string, unknown>, Record<string, unknown>>>;