UNPKG

@shopware-ag/dive

Version:

Shopware Spatial Framework

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