Skip to content

Commit e1dea79

Browse files
fix: resolve lint errors and add fToken to request class
Co-authored-by: siarheihuzarevich <[email protected]>
1 parent 408d006 commit e1dea79

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

projects/f-flow/src/f-draggable/f-connection/f-drag-control-point/drag-control-point-preparation/f-drag-control-point-preparation.request.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { FEventTrigger } from '../../../../domain';
22
import { IPointerEvent } from '../../../../drag-toolkit';
33

44
export class FDragControlPointPreparationRequest {
5+
static readonly fToken = Symbol('FDragControlPointPreparationRequest');
56
constructor(
67
public event: IPointerEvent,
78
public fTrigger: FEventTrigger,

projects/f-flow/src/f-draggable/f-connection/f-drag-control-point/f-drag-control-point.drag-handler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export class FDragControlPointDragHandler implements IFDragHandler {
99
public fEventType = 'drag-control-point';
1010
public fData: unknown;
1111

12-
private readonly _result: FDragHandlerResult<any>;
12+
private readonly _result: FDragHandlerResult<unknown>;
1313
private readonly _store: FComponentsStore;
1414
private readonly _startPosition: IPoint;
1515

0 commit comments

Comments
 (0)