From 4f1f03249e023a46fc3dbadd141c11e443ca8631 Mon Sep 17 00:00:00 2001 From: Marcel Good Date: Thu, 1 Sep 2016 17:27:14 -0700 Subject: [PATCH] Fix "error TS7010: 'showReportDialog', which lacks return-type annotation, implicitly has an 'any' return type" if compiling with "noImplicitAny": true --- typescript/raven.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typescript/raven.d.ts b/typescript/raven.d.ts index 4290b7b0ddc9..0b6844557fd8 100644 --- a/typescript/raven.d.ts +++ b/typescript/raven.d.ts @@ -211,7 +211,7 @@ interface RavenStatic { setShouldSendCallback(data: any, orig?: any): RavenStatic; /** Show Sentry user feedback dialog */ - showReportDialog(options: Object); + showReportDialog(options: Object): void; } interface RavenTransportOptions {