/opt/canhelp/node_modules/@opentelemetry/api/build/src/common
NameSizeModeActions
Attributes.d.ts6470644editdlrm
Attributes.js2000644editdlrm
Attributes.js.map8950644editdlrm
Exception.d.ts6400644editdlrm
Exception.js1990644editdlrm
Exception.js.map8600644editdlrm
Time.d.ts11130644editdlrm
Time.js1090644editdlrm
Time.js.map13280644editdlrm
Edit: /opt/canhelp/node_modules/@opentelemetry/api/build/src/common/Exception.js.map (860B)
{"version":3,"file":"Exception.js","sourceRoot":"","sources":["../../../src/common/Exception.ts"],"names":[],"mappings":";AAAA;;;GAGG","sourcesContent":["/*\n * Copyright The OpenTelemetry Authors\n * SPDX-License-Identifier: Apache-2.0\n */\n\ninterface ExceptionWithCode {\n code: string | number;\n name?: string;\n message?: string;\n stack?: string;\n}\n\ninterface ExceptionWithMessage {\n code?: string | number;\n message: string;\n name?: string;\n stack?: string;\n}\n\ninterface ExceptionWithName {\n code?: string | number;\n message?: string;\n name: string;\n stack?: string;\n}\n\n/**\n * Defines Exception.\n *\n * string or an object with one of (message or name or code) and optional stack\n *\n * @since 1.0.0\n */\nexport type Exception =\n | ExceptionWithCode\n | ExceptionWithMessage\n | ExceptionWithName\n | string;\n"]}