/** * This statement exports all of the functions and variables from the FaToEn module. * This allows other modules to import and use them. */ export * from './FaToEn'; /** * This statement exports all the named exports from the './EnToFa' module. * @returns All named exports from the './EnToFa' module. */ export * from './EnToFa'; /** * This module exports all functions from the addCommas module. */ export * from './addCommas'; /** * This module exports all functions from the 'removeCommas' module. */ export * from './removeCommas'; /** * This statement exports all the functions and variables from the 'rialToToman' module. * This allows other modules to import and use them. */ export * from './rialToToman'; /** * This statement exports all the functions and variables from the 'tomanToRial' module. * @returns All the functions and variables from the 'tomanToRial' module. */ export * from './tomanToRial'; export * from "./numberToWord";