interface SelectionMediatorOptions<W extends WazeFeature> {
    onDeselect?: () => void;
    onFeatureBoxSelection?: (features: W[]) => void;
    onFeatureClick?: (feature: W) => void;
    onPathSelect?: (feature: W) => void;
}

Type Parameters

Properties

onDeselect?: () => void
onFeatureBoxSelection?: (features: W[]) => void
onFeatureClick?: (feature: W) => void
onPathSelect?: (feature: W) => void