UNPKG

@eastsideco/escshopify

Version:

WIP JS library for Shopify, containing a variety of useful functionality.

18 lines (16 loc) 317 B
/** * Represents the current currency settings. */ class State { /** * Create new instance of the state. */ constructor() { /** @type {null|String} */ this.currency = null; /** @type {Number} */ this.taxRate = 0; } } /** @ignore */ export default new State();