fixed test failure

This commit is contained in:
Artur Sianiuk
2018-02-15 23:33:03 +03:00
parent d3d669de1f
commit 8ab60f4f01
+1 -1
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;