Interface SelectionChange<T>

Event emitted when the value of a MatSelectionModel has changed. @docs-private

interface SelectionChange<T> {
    added: T[];
    removed: T[];
    source: SelectionModel<T>;
}

Type Parameters

  • T

Properties

Properties

added: T[]

Options that were added to the model.

removed: T[]

Options that were removed from the model.

source: SelectionModel<T>

Model that dispatched the event.