15 lines
405 B
TypeScript
15 lines
405 B
TypeScript
|
|
import { Intent as BlueprintIntent } from "@blueprintjs/core";
|
||
|
|
import { IconName } from "@blueprintjs/icons";
|
||
|
|
|
||
|
|
export type SelectionType = "SINGLE_SELECT" | "MULTI_SELECT";
|
||
|
|
export interface DropdownOption {
|
||
|
|
label?: string;
|
||
|
|
value?: string;
|
||
|
|
icon?: IconName;
|
||
|
|
subText?: string;
|
||
|
|
id?: string;
|
||
|
|
onSelect?: (option: DropdownOption) => void;
|
||
|
|
children?: DropdownOption[];
|
||
|
|
intent?: BlueprintIntent;
|
||
|
|
}
|