lib-shared-constants
v1.0.0
Published
This lib allow to share any constants that we need between multiple services or app
Readme
Shared Constants
This lib allow to share any constants that we need between multiple services or app. For exemple: product codes, action types, pool mode...
Installation
npm:
npm install @iopool/lib-shared-constantsyarn:
yarn add @iopool/lib-shared-constantsUsage
Constant
import { productCode } from "@iopool/lib-shared-constants";
console.log(productCode); // { TabCl200: "TabCl200", TabCl20: "TabCl20", ... }Flow type
import { productCode } from "@iopool/lib-shared-constants";
import type { ProductCodeType } from "@iopool/lib-shared-constants";
const product: ProductCodeType = productCode.TabCl200;