googleanalytics-angular
Version:
Google Analytics for your Angular application
20 lines (17 loc) • 379 B
text/typescript
import {NgModule, ModuleWithProviders} from '@angular/core';
import {GoogleAnalyticsService} from './ga.service';
({
imports: [],
declarations: [],
exports: []
})
export class GoogleAnalyticsModule {
static forRoot(): ModuleWithProviders {
return {
ngModule: GoogleAnalyticsModule,
providers: [
GoogleAnalyticsService
]
};
}
}