UNPKG

merchnow-api-node

Version:
27 lines (26 loc) 522 B
export interface Icatalog { Content: unknown; 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; }