From 00801096a4936cc7e79deeaa4cded5a20b39e73e Mon Sep 17 00:00:00 2001 From: sakai-akinobu Date: Thu, 19 May 2022 22:52:59 +0900 Subject: [PATCH] Update `ignoredMessages` type definition. --- index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.d.ts b/index.d.ts index 5335808a..cb871f81 100644 --- a/index.d.ts +++ b/index.d.ts @@ -75,7 +75,7 @@ declare namespace Rollbar { hostBlockList?: string[]; hostWhiteList?: string[]; // deprecated hostSafeList?: string[]; - ignoredMessages?: string[]; + ignoredMessages?: (string | RegExp)[]; ignoreDuplicateErrors?: boolean; includeItemsInTelemetry?: boolean; inspectAnonymousErrors?: boolean;