W3cubDocs

/Web APIs

Report: type property

The type read-only property of the Report interface returns the type of report generated, e.g. deprecation or intervention.

Value

A string representing the type of the report. Currently the available types are deprecation, intervention, and crash.

Examples

js

const options = {
  types: ["deprecation"],
  buffered: true,
};

const observer = new ReportingObserver(([firstReport], observer) => {
  // Log the first report's report type, i.e. "deprecation"
  console.log(firstReport.type);
}, options);

Specifications

Browser compatibility

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari WebView Android Chrome Android Firefox for Android Opera Android Safari on IOS Samsung Internet
type 69 79 No No 56 16.4 69 69 No 48 16.4 10.0

See also

© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Report/type