UNPKG

inventora-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.

16 lines (14 loc) 332 B
export interface ArticleImage { /** * A base64 image string only used when creating an image. It will be converted to the src property. */ attachment?: string; /** * The date and time the image was created. */ created_at?: string; /** * The image's src URL. */ src?: string; }