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;