CommonSelectMenuProps
CommonSelectMenuProps
Type for the common properties shared by all select menu builders.
Signature
interface CommonSelectMenuProps<T, C> {
    onSelect?: CommandKitSelectMenuBuilderInteractionCollectorDispatch<T, C>;
    onEnd?: CommandKitSelectMenuBuilderOnEnd;
    onError?: (error: Error) => any;
    options?: CommandKitSelectMenuBuilderInteractionCollectorDispatchContextData;
}