UNPKG

@apptus/esales-api

Version:

Library for making requests to Elevate 4 API v3

12 lines (8 loc) 276 B
import type { BaseParams, ContentItem } from './common/mod.ts'; export interface ContentInformationParams extends BaseParams { /** The content keys to retrieve information from */ contentKeys: string[]; } export interface ContentInformation { items: ContentItem[]; }