次のディレクトリ構造があります。
/Admin/Grid
abc.ts // this file contains the one function abc()
xxx.ts // this file contains the one function xxx()
/Admin/Dialog
abc.ts // this file contains the one function abc()
3 つすべての JavaScript をブラウザにロードします。
関数 xxx() は次のようになります。
function xxx() {
// do abc
abc();
}
/Admin/Dialogディレクトリのファイル内にある関数abcを実行するように関数xxxに指示できるtypescriptを使用する方法はありますか?