import { IInteractionParameterProps, InteractionEffect } from "./IInteractionParameterSettings"; export type SelectionParameterValue = { names: string[]; }; /** * Properties of a selection parameter. */ export interface ISelectionParameterProps extends IInteractionParameterProps { /** The maximum number of objects that can be selected. (default: 1) */ maximumSelection?: number; /** The minimum number of objects that can be selected. (default: 1) */ minimumSelection?: number; /** The names of the objects that can be interacted with. (see Jira document and discussion result) */ nameFilter?: string[]; /** The interaction effect on objects when selected. (default: '#0d44f0') */ selectionColor?: InteractionEffect; /** The interaction effect on objects when available. (default: '#ffffff') */ availableColor?: InteractionEffect; /** If true, the selection will be cleared when clicking on an empty space. (default: false) */ deselectOnEmpty?: boolean; } //# sourceMappingURL=ISelectionParameterSettings.d.ts.map