@aurigma/design-atoms
Version:
Design Atoms is a part of Customer's Canvas SDK which allows for manipulating individual design elements through your code.
9 lines (8 loc) • 677 B
TypeScript
import { PointF } from "@aurigma/design-atoms-model/Math";
import { Cursor } from "../../../Utils/Common";
import { SelectionHitTestManager } from "../../../Services/SelectionHitTestManager";
import { HitTestManager } from "../../../Services/HitTestManager";
import { RubberbandHandler } from "./RubberbandHandler";
export declare class DefaultCursorHelper {
static getCursor(point: PointF, selectionHtManager: SelectionHitTestManager, hitTestManager: HitTestManager, rubberbandHandler: RubberbandHandler, angle: number, allowMove: boolean): Cursor.defaultCursor | Cursor.move | Cursor.pointer | Cursor.sizeEW | Cursor.sizeNS | Cursor.sizeNESW | Cursor.sizeNWSE;
}