UNPKG

@dash0/sdk-web

Version:

Dash0's Web SDK to collect telemetry from end-users' web browsers

7 lines (5 loc) 282 B
import { ErrorLike, ReportErrorOpts } from "../../types/errors"; import { reportError as reportErrorInternal } from "../instrumentations/errors/unhandled-error"; export function reportError(error: string | ErrorLike, opts?: ReportErrorOpts) { reportErrorInternal(error, opts); }