@betaquick/fccc-constants
v2.10.0
Published
a module to manage constants across fccc projects
Downloads
45
Readme
fccc-constants
a module to manage constants across fccc projects
Installation
npm i @betaquick/fccc-constantsUsage
Javascript
const constants = require('@betaquick/fccc-constants');
const admin = constants.UserTypes.Admin;
console.log(admin);
// Output should be 'Administrator'TypeScript
import { constants } from '@betaquick/fccc-constants';
console.log(constants.UserTypes.Admin);
// Output should be 'Administrator'Test
npm run test