fui-fancyui
Version:
FancyUI Libary
10 lines (9 loc) • 346 B
TypeScript
import { TUiColorsSystemMessage } from '../../../types/TUiColorsSystemMessage';
export type TColorState = {
type: 'item' | 'text';
isActive?: boolean;
systemMessage?: TUiColorsSystemMessage;
value?: string | number | readonly string[] | undefined;
placeholder?: string;
};
export type TItemStateOutput = 'default' | 'active';