merchnow-api-node
Version:
npm module for Merchnow's API
8 lines (7 loc) • 354 B
TypeScript
import { Icatalog } from "./interfaces";
/**
* @param {string} string - A string to search for.
* @param {Number} number - Offset for the API, if limit === itemsReturned, you can get next items with offset
* @return {Object} Object - Resulting Object
*/
export declare const getCatalog: (string: string, offset?: number) => Promise<Icatalog>;