UNPKG

mint_beach_js

Version:

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

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