1
Newbie Question
打字稿定義文件 - 的HelloWorld
我有一個使用的擴展,jQuery的一個打字稿文件:
function Something() {
$.stuff.removeAll();
}
我試圖寫stuff
定義文件,但我堅持。我嘗試這樣做:
declare namespace JQueryStuff {
interface Stuff{
removeAll(): void;
}
}
interface JQueryStatic {
stuff(): JQueryStuff.Stuff;
}
在Visual Studio打字稿intellisence拿起"Stuff"
但不removeAll()