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.

8 lines (7 loc) 228 B
import { FieldOptions, ListOptions } from "./base"; export interface CountryListOptions extends FieldOptions, ListOptions { /** * A comma-separated list of country ids. */ ids?: string | string[] | number[]; }