hosanna-ui-docs - v0.9.0
    Preparing search index...

    Interface for managing selection logic within the application.

    Provides methods to handle, validate, and manage selections, as well as to cancel any pending selection operations.

    interface ISelectionManager {
        cancelPendingSelection(selection: null | HsSelection): void;
        handleSelection(selection: HsSelection): boolean;
        isSelectionValid(selection: HsSelection): boolean;
        manageSelection(): boolean;
    }

    Implemented by

    Index

    Methods