@bugsnag/web-worker
Version:
BugSnag error reporter for JavaScript web workers and service workers
18 lines (13 loc) • 460 B
text/typescript
import type { Client, Config, BugsnagStatic } from '@bugsnag/core'
interface WorkerConfig extends Config {
collectUserIp?: boolean
generateAnonymousId?: boolean
}
interface WorkerBugsnagStatic extends BugsnagStatic {
start(apiKeyOrOpts: string | WorkerConfig): Client
createClient(apiKeyOrOpts: string | WorkerConfig): Client
}
declare const Bugsnag: WorkerBugsnagStatic
export default Bugsnag
export * from '@bugsnag/core'
export { WorkerConfig }