UNPKG

mint_beach_js

Version:

A JavaScript SDK used to interact with the Mint Beach API.

15 lines (12 loc) 337 B
//Local Imports const resourceModel = require("./../models/resourceModel"); /** Class representing the products resource in the API. */ class Products extends resourceModel { /** * Create a resource for the /products API endpoints. */ constructor(tenantid) { super(tenantid, "products"); } } module.exports = Products;