mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-25 08:06:22 +08:00
Change raygun options parameter types
`excludedHostnames` and `excludedUserAgents` is an array of strings or regular expressions.
This commit is contained in:
4
raygun4js/raygun4js.d.ts
vendored
4
raygun4js/raygun4js.d.ts
vendored
@@ -62,8 +62,8 @@ declare namespace raygun {
|
||||
ignoreAjaxAbort?: boolean;
|
||||
ignoreAjaxError?: boolean;
|
||||
disableAnonymousUserTracking?: boolean;
|
||||
excludedHostnames?: boolean | string[];
|
||||
excludedUserAgents?: boolean | string[];
|
||||
excludedHostnames?: (string|Regex)[];
|
||||
excludedUserAgents?: (string|Regex)[];
|
||||
wrapAsynchronousCallbacks?: boolean;
|
||||
debugMode?: boolean;
|
||||
ignore3rdPartyErrors?: boolean;
|
||||
|
||||
Reference in New Issue
Block a user