How do I import other TypeScript files?

前端 未结 9 1594
北恋
北恋 2020-11-28 20:29

When using the TypeScript plugin for vs.net, how do I make one TypeScript file import modules declared in other TypeScript files?

file 1:

module moo
         


        
9条回答
  •  一生所求
    2020-11-28 20:52

    import {className} from 'filePath';
    

    remember also. The class you are importing , that must be exported in the .ts file.

提交回复
热议问题