UNPKG

@scayle/storefront-core

Version:

Collection of essential utilities to work with the Storefront API

10 lines (9 loc) 253 B
import type { ValuesType } from 'utility-types'; /** * Types of product images. */ export declare const ProductImageType: { readonly MODEL: "model"; readonly BUST: "bust"; }; export type ProductImageType = ValuesType<typeof ProductImageType>;