UNPKG

merchnow-api-node

Version:
30 lines (26 loc) 492 B
export interface Icatalog { Content: unknown // later cast as string or Icontent NumberOfItems: number ItemsReturned: number Enabled: boolean Offset: number Limit: number } export interface Icontent { name: string decorations: string[] description: Idescription[] images: Iimages url: string } export interface Idescription { content: string tag: string url?: string } export interface Iimages { lg: string md: string sm: string xl: string }