使用環境模組

如果你只想表明匯入的意圖 (因此你不想宣告全域性)但不想打擾任何顯式定義,則可以匯入環境模組。

// in a declarations file (like declarations.d.ts)
declare module "jquery";    // note that there are no defined exports

然後,你可以從環境模組匯入。

// some other .ts file
import {$, jQuery} from "jquery";

從上面宣告的模組(如 $jQuery)匯入的任何內容都將是 any 型別