/** * 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; }