LoginSignup
2
3

More than 5 years have passed since last update.

TypeScript でerror TS2304: Cannot find name 'ga'.

Posted at

Google Analyticsにイベント送信するために ga('send') を使った時に、TypeScriptの型定義ファイルを設定していなかったので、当然エラーに。

error TS2304: Cannot find name 'ga'.

型定義ファイルはこれでした。
https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/google.analytics

yarnでインストール

yarn add @types/google.analytics

npmならこう

npm install @types/google.analytics

これで gaが問題なく使えるようになりました。

p.s.
型定義ファイルの場所を教えてくれた ひろましゃ( @hiromasa )さんに感謝。

2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3