interface InteractiveConfig {
    getViewEntity: (() => Partial<ViewEntity>);
    isClickable: boolean;
    isDraggable: boolean;
    isHoverable: boolean;
    isPinchable: boolean;
    isPressable: boolean;
    isRotatable: boolean;
    onClick: ((event) => void);
    onDBClick: ((event) => void);
    onDragEnd: ((event) => void);
    onDragMove: ((event) => void);
    onDragStart: ((event) => void);
    onHoverIn: ((event) => void);
    onHoverOut: ((event) => void);
    onPinch: ((event) => void);
    onPinchEnd: ((event) => void);
    onPinchStart: ((event) => void);
    onPress: ((event) => void);
    onPressUp: ((event) => void);
    onRightClick: ((event) => void);
    onRotate: ((event) => void);
    onRotateEnd: ((event) => void);
    onRotateStart: ((event) => void);
}

Properties

getViewEntity: (() => Partial<ViewEntity>)

Type declaration

isClickable: boolean
isDraggable: boolean
isHoverable: boolean
isPinchable: boolean
isPressable: boolean
isRotatable: boolean
onClick: ((event) => void)

Type declaration

    • (event): void
    • Parameters

      Returns void

onDBClick: ((event) => void)

Type declaration

    • (event): void
    • Parameters

      Returns void

onDragEnd: ((event) => void)

Type declaration

    • (event): void
    • Parameters

      Returns void

onDragMove: ((event) => void)

Type declaration

    • (event): void
    • Parameters

      Returns void

onDragStart: ((event) => void)

Type declaration

    • (event): void
    • Parameters

      Returns void

onHoverIn: ((event) => void)

Type declaration

    • (event): void
    • Parameters

      Returns void

onHoverOut: ((event) => void)

Type declaration

    • (event): void
    • Parameters

      Returns void

onPinch: ((event) => void)

Type declaration

    • (event): void
    • Parameters

      Returns void

onPinchEnd: ((event) => void)

Type declaration

    • (event): void
    • Parameters

      Returns void

onPinchStart: ((event) => void)

Type declaration

    • (event): void
    • Parameters

      Returns void

onPress: ((event) => void)

Type declaration

    • (event): void
    • Parameters

      Returns void

onPressUp: ((event) => void)

Type declaration

    • (event): void
    • Parameters

      Returns void

onRightClick: ((event) => void)

Type declaration

    • (event): void
    • Parameters

      Returns void

onRotate: ((event) => void)

Type declaration

    • (event): void
    • Parameters

      Returns void

onRotateEnd: ((event) => void)

Type declaration

    • (event): void
    • Parameters

      Returns void

onRotateStart: ((event) => void)

Type declaration

    • (event): void
    • Parameters

      Returns void

Generated using TypeDoc