UNPKG

@ptkdev/node-module-boilerplate

Version:

Create your npm library with this user friendly boilerplate. Use this respository as template for your new node library/module

16 lines (15 loc) 354 B
/** * Translations * ===================== * Switch translations * * @contributors: Patryk Rzucidło [@ptkdev] <support@ptkdev.io> (https://ptk.dev) * * @license: MIT License * */ import en from "../translations/en.json"; import it from "../translations/it.json"; declare const translations: any; export { it, en }; export default translations;