芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/app.optimyar.com/backend/node_modules/@sentry/node/esm/backend.d.ts
import { BaseBackend } from '@sentry/core'; import { Event, EventHint, Options, Severity, Transport } from '@sentry/types'; /** * Configuration options for the Sentry Node SDK. * @see NodeClient for more information. */ export interface NodeOptions extends Options { /** Sets an optional server name (device name) */ serverName?: string; /** Maximum time in milliseconds to wait to drain the request queue, before the process is allowed to exit. */ shutdownTimeout?: number; /** Set a HTTP proxy that should be used for outbound requests. */ httpProxy?: string; /** Set a HTTPS proxy that should be used for outbound requests. */ httpsProxy?: string; /** HTTPS proxy certificates path */ caCerts?: string; /** Sets the number of context lines for each frame when loading a file. */ frameContextLines?: number; /** Callback that is executed when a fatal global error occurs. */ onFatalError?(error: Error): void; } /** * The Sentry Node SDK Backend. * @hidden */ export declare class NodeBackend extends BaseBackend
{ /** * @inheritDoc */ eventFromException(exception: any, hint?: EventHint): PromiseLike
; /** * @inheritDoc */ eventFromMessage(message: string, level?: Severity, hint?: EventHint): PromiseLike
; /** * @inheritDoc */ protected _setupTransport(): Transport; } //# sourceMappingURL=backend.d.ts.map