Interface SelectionOptions<Multi, T>

interface SelectionOptions<Multi, T> {
    multi: Multi;
    execute(selection, ...args): any;
    isEnabled?(selection, ...args): boolean;
    isVisible?(selection, ...args): boolean;
}

Type Parameters

  • Multi extends boolean
  • T

Properties

multi: Multi

Methods