/** * @name addition * @description Adding some docs for Lerna testing... */ const addition = (x: number, y: number) => { const result = x + y; return result; }; /** * @name subtraction * @description Adding some docs for Lerna testing... */ const subtraction = (x: number, y: number) => { const result = x - y; return result; }; export { addition, subtraction };