File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ namespace microdata {
1313
1414 // application configuration
1515 // user_interface_base.getIcon = (id) => icons.get(id)
16- user_interface_base . getIcon = ( id ) => user_interface_base . icons . get ( id )
16+ user_interface_base . getIcon = ( id : string ) => user_interface_base . icons . get ( id )
1717 user_interface_base . resolveTooltip = ( ariaId : string ) => ariaId
1818
1919 /**
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ namespace microdata {
2323 } )
2424 }
2525
26- /* override */ startup ( ) {
26+ /* override */ startup ( _ : ( ) => void ) {
2727 super . startup ( )
2828 basic . pause ( 50 ) ;
2929
Original file line number Diff line number Diff line change @@ -574,7 +574,8 @@ namespace microdata {
574574 DistributedLoggingScreen . streamingDone = true
575575 }
576576
577- /* override */ startup ( ) {
577+
578+ /* override */ startup ( _ : ( ) => void ) {
578579 super . startup ( )
579580 basic . pause ( 50 ) ;
580581
Original file line number Diff line number Diff line change @@ -12,7 +12,8 @@ namespace microdata {
1212 super ( app )
1313 }
1414
15- /* override */ startup ( ) {
15+
16+ /* override */ startup ( _ : ( ) => void ) {
1617 super . startup ( )
1718 basic . pause ( 50 ) ;
1819
Original file line number Diff line number Diff line change @@ -132,7 +132,8 @@ namespace microdata {
132132 this . setGlobalMinAndMax ( )
133133 }
134134
135- /* override */ startup ( ) {
135+
136+ /* override */ startup ( _ : ( ) => void ) {
136137 super . startup ( )
137138 basic . pause ( 50 ) ;
138139
Original file line number Diff line number Diff line change @@ -116,7 +116,8 @@ namespace microdata {
116116 }
117117 }
118118
119- /* override */ startup ( ) {
119+
120+ /* override */ startup ( _ : ( ) => void ) {
120121 super . startup ( )
121122 basic . pause ( 50 ) ;
122123
Original file line number Diff line number Diff line change @@ -42,7 +42,8 @@ namespace microdata {
4242 this . jacdacSensorSelected = false ;
4343 }
4444
45- /* override */ startup ( ) {
45+
46+ /* override */ startup ( _ : ( ) => void ) {
4647 super . startup ( )
4748 basic . pause ( 50 ) ;
4849
Original file line number Diff line number Diff line change @@ -141,7 +141,8 @@ namespace microdata {
141141 this . goBack1PageFn = goBack1PageFn
142142 }
143143
144- /* override */ startup ( ) {
144+
145+ /* override */ startup ( _ : ( ) => void ) {
145146 super . startup ( )
146147 basic . pause ( 50 ) ;
147148
You can’t perform that action at this time.
0 commit comments