Correct return values

This commit is contained in:
delphinus
2016-03-31 00:33:00 +09:00
parent eee669cc9c
commit ee10fc38b1
+2 -2
View File
@@ -69,7 +69,7 @@ declare namespace StackTrace {
*
* @param stackframes - Array[StackFrame]
* @param url - URL as String
* @return Promise<any>
* @return Promise<string>
*/
export function report(stackframes: StackFrame[], url: string): Promise<any>;
export function report(stackframes: StackFrame[], url: string): Promise<string>;
}