UNPKG

shopee-client

Version:
14 lines (13 loc) 279 B
export interface ItemId { /** * Shopee's unique identifier for an item. */ item_id: number; } export default interface GetItemsResponse { items: ItemId[]; /** * The identifier for an API request for error tracking */ request_id: string; }