UNPKG

@shopware-ag/dive

Version:

Shopware Spatial Framework

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