@@ -173,6 +173,7 @@ export class EditingManager {
173173 this . #dispatchVoid( this . #engine. raw . removePoints ( pointIds ) ) ;
174174 }
175175
176+ /** @knipclassignore used via Pick<EditingManager, CommandEditingMethods> */
176177 insertPointBefore ( beforePointId : PointId , edit : PointEdit ) : PointId {
177178 const ids = this . #dispatch(
178179 this . #engine. raw . insertPointBefore (
@@ -214,6 +215,7 @@ export class EditingManager {
214215 this . #dispatchVoid( this . #engine. raw . setXAdvance ( width ) ) ;
215216 }
216217
218+ /** @knipclassignore used via Pick<EditingManager, CommandEditingMethods> */
217219 translateLayer ( dx : number , dy : number ) : void {
218220 this . #dispatchVoid( this . #engine. raw . translateLayer ( dx , dy ) ) ;
219221 }
@@ -231,10 +233,12 @@ export class EditingManager {
231233 this . #dispatchVoid( this . #engine. raw . reverseContour ( contourId ) ) ;
232234 }
233235
236+ /** @knipclassignore used via Pick<EditingManager, CommandEditingMethods> */
234237 removeContour ( contourId : ContourId ) : void {
235238 this . #dispatchVoid( this . #engine. raw . removeContour ( contourId ) ) ;
236239 }
237240
241+ /** @knipclassignore used via Pick<EditingManager, CommandEditingMethods> */
238242 openContour ( contourId : ContourId ) : void {
239243 this . #dispatchVoid( this . #engine. raw . openContour ( contourId ) ) ;
240244 }
0 commit comments