Any declaration (variable, const, function, class, etc.) can be exported from module to be imported in other module.
Typescript offer two export types: named and default.
Named export
// adams.ts
export function hello(name: string){
console.log(`Hello ${name}!`);
}
export const answerToLi...