perf(angular): bundle size improvements for angular (#16966)

This commit is contained in:
Manu MA
2019-01-07 22:05:36 +01:00
committed by GitHub
parent 45db44abe7
commit 44fb45e2bc
30 changed files with 322 additions and 328 deletions

View File

@ -12,7 +12,9 @@ export interface AnimationOptions {
export interface NavigationOptions extends NavigationExtras, AnimationOptions {}
@Injectable()
@Injectable({
providedIn: 'root',
})
export class NavController {
private direction: 'forward' | 'back' | 'root' | 'auto' = DEFAULT_DIRECTION;