ES6 & CommonES6 模块系统// a.ts
export const a = 1;
let b = 2,
c = 3;
export { b, c };
export interface P
2021-12-23