Common.js for Power-Up
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const PACKAGE = require('../../package.json'); | |
/** | |
* CommonFunctions to be shared across all the project | |
*/ | |
export default class Common { | |
/** @type {String} */ | |
static APPNAME = PACKAGE.appName; | |
/** @type {String} */ | |
static VERSION = PACKAGE.version; | |
/** @type {String} */ | |
static detailsPage = "./details.html"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment