UNPKG

@allincart-ag/dive

Version:

Allincart 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; }