課題としてはGoogle Mapsにお絵描きだ。
はて?TypeScriptソース内にGoogle Maps JavaScript APIをどうやって導入すればいいんだろう、と思っていたら、AngularでGoogle Maps JavaScript APIを使っている投稿があるので参考にさせてもらう。
Install Google Maps types for typescript support
npm install --save @types/googlemaps
Import the Google Maps types into component
import {} from 'googlemaps';
以下の1行を記載した新規TSファイル「index.d.ts」を設置
declare module 'googlemaps';
これで、TypeScript内で「google.maps」が使えるようになった。