File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
libs/soba/controls/src/lib Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -124,13 +124,19 @@ export class NgtsOrbitControls {
124
124
const startCallback = this . started . emit . bind ( this . started ) ;
125
125
const endCallback = this . ended . emit . bind ( this . ended ) ;
126
126
127
+ // @ts -expect-error - type error from three-stdlib
127
128
controls . addEventListener ( 'change' , changeCallback ) ;
129
+ // @ts -expect-error - type error from three-stdlib
128
130
controls . addEventListener ( 'start' , startCallback ) ;
131
+ // @ts -expect-error - type error from three-stdlib
129
132
controls . addEventListener ( 'end' , endCallback ) ;
130
133
131
134
onCleanup ( ( ) => {
135
+ // @ts -expect-error - type error from three-stdlib
132
136
controls . removeEventListener ( 'change' , changeCallback ) ;
137
+ // @ts -expect-error - type error from three-stdlib
133
138
controls . removeEventListener ( 'start' , startCallback ) ;
139
+ // @ts -expect-error - type error from three-stdlib
134
140
controls . removeEventListener ( 'end' , endCallback ) ;
135
141
} ) ;
136
142
} ) ;
You can’t perform that action at this time.
0 commit comments