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.

11 lines (10 loc) 274 B
import { FieldOptions } from './base'; export interface ThemeListOptions extends FieldOptions { } export interface ThemeGetOptions extends FieldOptions { } export interface ThemeCreateOptions { src: string; name: string; role: 'main' | 'unpublished' | 'demo'; }