0
我想從TypeScript類調用Javascript方法。我試過this solution,但它不適合我。我收到錯誤如何從TypeScript類調用JavaScript方法?
未捕獲的ReferenceError:打招呼沒有定義
這裏是我的代碼:
//Resources.js
function greet() {return "Hello";}
//Modifiers.ts
declare function greet(): string;
var hi = greet();
任何幫助表示讚賞!