File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import { ROUTES } from './app.routes';
1313// App is our top level component
1414import { App } from './app.component' ;
1515import { APP_RESOLVER_PROVIDERS } from './app.resolver' ;
16- import { AppState , InteralStateType } from './app.service' ;
16+ import { AppState , InternalStateType } from './app.service' ;
1717import { Home } from './home' ;
1818import { About } from './about' ;
1919import { NoContent } from './no-content' ;
@@ -26,7 +26,7 @@ const APP_PROVIDERS = [
2626] ;
2727
2828type StoreType = {
29- state : InteralStateType ,
29+ state : InternalStateType ,
3030 restoreInputValues : ( ) => void ,
3131 disposeOldHosts : ( ) => void
3232} ;
Original file line number Diff line number Diff line change 11import { Injectable } from '@angular/core' ;
22
3- export type InteralStateType = {
3+ export type InternalStateType = {
44 [ key : string ] : any
55} ;
66
77@Injectable ( )
88export class AppState {
9- _state : InteralStateType = { } ;
9+ _state : InternalStateType = { } ;
1010
1111 constructor ( ) {
1212
@@ -34,7 +34,7 @@ export class AppState {
3434 }
3535
3636
37- private _clone ( object : InteralStateType ) {
37+ private _clone ( object : InternalStateType ) {
3838 // simple object clone
3939 return JSON . parse ( JSON . stringify ( object ) ) ;
4040 }
You can’t perform that action at this time.
0 commit comments