fixed test failure

This commit is contained in:
Artur Sianiuk
2018-02-15 15:48:46 +03:00
parent d3d669de1f
commit 8ab60f4f01

View File

@@ -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;