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.

17 lines (16 loc) 376 B
import { ShopifyObject } from "./base"; export interface Province extends ShopifyObject { code: string; country_id: number; name: string; tax: number; tax_name: string; tax_type: string; tax_percentage: number; } export interface Country extends ShopifyObject { code?: string; name?: string; tax?: number; provinces?: Province[]; }