merchnow-api-node
Version:
npm module for Merchnow's API
30 lines (26 loc) • 492 B
text/typescript
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
}