标签: typescript
说我有2个TS文件(模块)。
//foo.ts export let count; count = updateCount(); //bar.ts import { count } from 'foo.ts'; console.log(count);
此结果: 未定义 因为,如果我做对了,计数在值更新(分配)之前就已导入。
所以我的问题是如何导入它并使它在Typescript中保持更新。