Add analytics script (fixes #174) (#245)

This commit is contained in:
Surma
2018-11-09 18:53:10 +00:00
committed by Jake Archibald
parent 6994cc3d15
commit f562bad286
3 changed files with 29 additions and 0 deletions

View File

@@ -34,3 +34,12 @@ declare module 'url-loader!*' {
}
declare var VERSION: string;
declare var ga: {
(...args: any[]): void;
q: any[];
};
interface Window {
ga: typeof ga;
}