UNPKG

@shopware-ag/dive

Version:

Shopware Spatial Framework

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