UNPKG

@shopware-ag/dive

Version:

Shopware Spatial Framework

13 lines (11 loc) 217 B
/** * Interface for objects that can be moved in the scene. * * @module */ export interface DIVEMovable { isMovable: true; onMoveStart?: () => void; onMove?: () => void; onMoveEnd?: () => void; }