@eastsideco/escshopify
Version:
WIP JS library for Shopify, containing a variety of useful functionality.
15 lines (12 loc) • 423 B
JavaScript
import EasyCurrency from './easycurrency/EasyCurrency';
import GeoService from './geoservice/GeoService';
class Plugins {
constructor() {
/** @type {src/plugins/easycurrency/EasyCurrency.js~EasyCurrency} */
this.EasyCurrency = EasyCurrency;
/** @type {src/plugins/geoservice/GeoService.js~GeoService} */
this.GeoService = GeoService;
}
}
/** @ignore */
export default new Plugins;