Interface SelectionProvider<T>

SelectionProvider is implemented by services to notify listeners about selection changes.

interface SelectionProvider<T> {
    onSelectionChanged: Event<undefined | T>;
}

Type Parameters

  • T

Hierarchy (view full)

Implemented by

Properties

onSelectionChanged: Event<undefined | T>