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;
icon?: string;
icon?: undefined;
label?: undefined;
color?: undefined;
backgroundColor?: undefined;
@ -60,7 +60,7 @@ export type TOption =
disabled?: undefined;
description?: undefined;
quota?: undefined;
isSeparator?: true;
isSeparator: true;
isSelected?: undefined;
internal?: undefined;
access?: ShareAccessRights;