I want to open 'file1.ts' and write:
export var arr = [1,2,3];
and open another file, let's say 'file2.ts' and access directly to 'arr' in file1.ts:
I do it by:
import {arr} from './file1';
However, when I want to access 'arr', I can't just write 'arr', but I have to write 'arr.arr'. The first one is for the module name. How do I access directly an exported variable name?