/** * item for editable list * * @author Denis Makarov * @date 2020-08-24 */ import {IStringKeyMap} from '../../type'; export interface IEditableListItem { id: string; value: string | null; removable: boolean; extra: IStringKeyMap; // extra data that can be used within custom wrapper for EditableValuesList }