From 8ab60f4f010c125d960d27a0d20efa7cfacd7bb1 Mon Sep 17 00:00:00 2001 From: Artur Sianiuk Date: Thu, 15 Feb 2018 15:48:46 +0300 Subject: [PATCH] fixed test failure --- types/autosuggest-highlight/parse/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/autosuggest-highlight/parse/index.d.ts b/types/autosuggest-highlight/parse/index.d.ts index ab458aebb1..01038cd116 100644 --- a/types/autosuggest-highlight/parse/index.d.ts +++ b/types/autosuggest-highlight/parse/index.d.ts @@ -1,3 +1,3 @@ -declare function parse(text: string, matches: number[] | number[][]): { text: string; highlight: boolean; }[]; +declare function parse(text: string, matches: number[] | number[][]): Array<{ text: string; highlight: boolean; }>; export = parse;