@honeybadger-io/js 4.0.1 → 4.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3,9 +3,9 @@ import { BrowserConfig } from './types/core/types';
3
3
  declare class Honeybadger extends Client {
4
4
  config: BrowserConfig;
5
5
  constructor(opts?: Partial<BrowserConfig>);
6
- configure(opts?: Partial<BrowserConfig>): Client;
6
+ configure(opts?: Partial<BrowserConfig>): this;
7
7
  resetMaxErrors(): number;
8
- factory(opts?: Partial<BrowserConfig>): Honeybadger;
8
+ factory(opts?: Partial<BrowserConfig>): this;
9
9
  checkIn(_id: string): Promise<void>;
10
10
  }
11
11
  declare const _default: Honeybadger;
@@ -637,7 +637,7 @@
637
637
  var notifier = {
638
638
  name: 'honeybadger-js',
639
639
  url: 'https://github.com/honeybadger-io/honeybadger-js',
640
- version: '4.0.1'
640
+ version: '4.0.2'
641
641
  };
642
642
  // Split at commas and spaces
643
643
  var TAG_SEPARATOR = /,|\s+/;
@@ -1626,6 +1626,7 @@
1626
1626
  return (this.__errorsSent = 0);
1627
1627
  };
1628
1628
  Honeybadger.prototype.factory = function (opts) {
1629
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
1629
1630
  return new Honeybadger(opts);
1630
1631
  };
1631
1632
  Honeybadger.prototype.checkIn = function (_id) {