Typescript檔案使用Javascript檔案

declare 關鍵 & .d.ts

參考網址:http://stackoverflow.com/questions/13753311/load-js-file-into-typescript-file

1. 先寫好javascript檔案     ex: function test(){return "Hello";}

2.建立 .d.ts檔案, 使用 declare 關鍵字 後面接上 要使用的function 之類  ex:declare function test();

3.回到自己的typescript ,先reference 建立好的 .d.ts檔案之後就可以使用此方法