index.ts 108 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 import {Bye} from './Bye'; const hi = 'hello?'; const hi1 = () => { console.log(hi); Bye(); }; hi1();