UNPKG

@shopware-ag/dive

Version:

Shopware Spatial Framework

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