UNPKG

shopify-admin-api

Version:

Shopify Admin API is a NodeJS library built to help developers easily authenticate and make calls against the Shopify API. It was inspired by and borrows heavily from ShopifySharp.

10 lines (9 loc) 319 B
import { ListOptions, SinceIdOptions, FieldOptions } from "./base"; export interface CollectListOptions extends ListOptions, FieldOptions { } export interface CollectCountOptions extends SinceIdOptions { product_id?: number; collection_id?: number; } export interface CollectGetOptions extends FieldOptions { }