UNPKG

@shopware-ag/dive

Version:

Shopware Spatial Framework

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