UNPKG

@shopware-ag/dive

Version:

Shopware Spatial Framework

10 lines (9 loc) 166 B
/** * Interface for objects that can be rotated in the scene. * * @module */ export interface DIVERotatable { isRotatable: true; onRotate?: () => void; }