From 26896af370c468ed8ba6913b3d468462e2364510 Mon Sep 17 00:00:00 2001 From: ferris Date: Wed, 13 Jun 2018 11:36:25 +0200 Subject: [PATCH] Expose async `install` signature in typescript def --- lib/Sentry.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Sentry.d.ts b/lib/Sentry.d.ts index f432af719f..be3386faaf 100644 --- a/lib/Sentry.d.ts +++ b/lib/Sentry.d.ts @@ -42,7 +42,7 @@ interface SentryOptions { export default Sentry; export class Sentry { - install(): void; + install(): Promise; static config(dsn: string, options?: SentryOptions): Sentry;