Shared:Components:Combobox: change TOption type

This commit is contained in:
Darya Umrikhina 2024-08-13 16:29:54 +04:00
parent 2d6b3f3d03
commit fa1cd6eea7

View File

@ -51,7 +51,7 @@ export type TOption =
} }
| { | {
key: string | number; key: string | number;
icon?: string; icon?: undefined;
label?: undefined; label?: undefined;
color?: undefined; color?: undefined;
backgroundColor?: undefined; backgroundColor?: undefined;
@ -60,7 +60,7 @@ export type TOption =
disabled?: undefined; disabled?: undefined;
description?: undefined; description?: undefined;
quota?: undefined; quota?: undefined;
isSeparator?: true; isSeparator: true;
isSelected?: undefined; isSelected?: undefined;
internal?: undefined; internal?: undefined;
access?: ShareAccessRights; access?: ShareAccessRights;