fix(exports): update module exports

This commit is contained in:
Adam Bradley
2016-09-14 15:54:20 -05:00
parent 8585427fb4
commit 6784f5e744
8 changed files with 67 additions and 114 deletions

View File

@@ -230,16 +230,3 @@ export function setupTapClick(config: Config, app: App, zone: NgZone) {
return new TapClick(config, app, zone);
};
}
export function provideTapClick() {
return {
provide: APP_INITIALIZER,
useFactory: setupTapClick,
deps: [
Config,
App,
NgZone
],
multi: true
};
}