W3cubDocs

/Web APIs

Report: type property

Note: This feature is available in Web Workers.

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

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 Opera Safari Chrome Android Firefox for Android Opera Android Safari on IOS Samsung Internet WebView Android WebView on iOS
type 69 79 65 56 16.4 69 No 48 16.4 10.0 69 16.4

See also

© 2005–2025 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