Interface ISelectionOptions

interface ISelectionOptions {
    collapseOthers: boolean | {
        threshold: number;
    };
    expand: boolean | "single";
}

Properties

collapseOthers: boolean | {
    threshold: number;
}

Type declaration

  • threshold: number
expand: boolean | "single"