UNPKG

@shopware-ag/dive

Version:

Shopware Spatial Framework

12 lines (10 loc) 199 B
/** * Interface for objects that can be selected in the scene. * * @module */ export interface DIVESelectable { isSelectable: true; onSelect?: () => void; onDeselect?: () => void; }