@@ -28,18 +28,18 @@ export class NgHttpLoaderComponent implements OnInit {
2828 isVisible$ ! : Observable < boolean > ;
2929 visibleUntil = Date . now ( ) ;
3030
31- backdrop = model < boolean > ( true ) ;
32- backgroundColor = model < string > ( ) ;
33- debounceDelay = model < number > ( 0 ) ;
34- entryComponent = model < Type < unknown > | null > ( null ) ;
35- extraDuration = model < number > ( 0 ) ;
36- filteredHeaders = model < string [ ] > ( [ ] ) ;
37- filteredMethods = model < string [ ] > ( [ ] ) ;
38- filteredUrlPatterns = model < string [ ] > ( [ ] ) ;
39- minDuration = model < number > ( 0 ) ;
40- opacity = model < string > ( '.7' ) ;
41- backdropBackgroundColor = model < string > ( '#f1f1f1' ) ;
42- spinner = model < string | null > ( Spinkit . skWave ) ;
31+ readonly backdrop = model < boolean > ( true ) ;
32+ readonly backgroundColor = model < string > ( ) ;
33+ readonly debounceDelay = model < number > ( 0 ) ;
34+ readonly entryComponent = model < Type < unknown > | null > ( null ) ;
35+ readonly extraDuration = model < number > ( 0 ) ;
36+ readonly filteredHeaders = model < string [ ] > ( [ ] ) ;
37+ readonly filteredMethods = model < string [ ] > ( [ ] ) ;
38+ readonly filteredUrlPatterns = model < string [ ] > ( [ ] ) ;
39+ readonly minDuration = model < number > ( 0 ) ;
40+ readonly opacity = model < string > ( '.7' ) ;
41+ readonly backdropBackgroundColor = model < string > ( '#f1f1f1' ) ;
42+ readonly spinner = model < string | null > ( Spinkit . skWave ) ;
4343
4444 constructor ( private pendingRequestsInterceptorConfigurer : PendingRequestsInterceptorConfigurer , private spinnerVisibility : SpinnerVisibilityService ) {
4545 }
0 commit comments