UNPKG

@shopware-ag/dive

Version:

Shopware Spatial Framework

10 lines (9 loc) 162 B
/** * Interface for objects that can be scaled in the scene. * * @module */ export interface DIVEScalable { isScalable: true; onScale?: () => void; }