UNPKG

@shopware-ag/dive

Version:

Shopware Spatial Framework

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