From 4045e65820f498ad7672884f37b0e99642c41179 Mon Sep 17 00:00:00 2001 From: Diego Cardoso Date: Thu, 2 Jul 2020 11:34:44 +0300 Subject: [PATCH] fix: make ComboBoxItem compatible with interface Related with https://github.com/vaadin/vaadin-grid/issues/1764 --- @types/interfaces.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/@types/interfaces.d.ts b/@types/interfaces.d.ts index 610a40b26..1ce41727c 100644 --- a/@types/interfaces.d.ts +++ b/@types/interfaces.d.ts @@ -1,6 +1,6 @@ import { ComboBoxElement } from '../src/vaadin-combo-box.js'; -export type ComboBoxItem = { [key: string]: unknown }; +export type ComboBoxItem = unknown; export interface ComboBoxItemModel { index: number;