@@ -28,18 +28,18 @@ export class NgHttpLoaderComponent implements OnInit {
28
28
isVisible$ ! : Observable < boolean > ;
29
29
visibleUntil = Date . now ( ) ;
30
30
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 ) ;
43
43
44
44
constructor ( private pendingRequestsInterceptorConfigurer : PendingRequestsInterceptorConfigurer , private spinnerVisibility : SpinnerVisibilityService ) {
45
45
}
0 commit comments