Skip to content

Commit

Permalink
fix: Fix plugin types
Browse files Browse the repository at this point in the history
  • Loading branch information
bengourley committed Mar 6, 2020
1 parent 30de0c0 commit 8801042
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/plugin-react/types/bugsnag-react.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Bugsnag } from '@bugsnag/browser'
import { Plugin } from '@bugsnag/browser'
import React from 'react'

declare class BugsnagPluginReact extends Bugsnag.Plugin {
declare class BugsnagPluginReact extends Plugin {
constructor(React?: React)
}

Expand Down
4 changes: 2 additions & 2 deletions packages/plugin-vue/types/bugsnag-vue.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Bugsnag } from '@bugsnag/browser'
import { Plugin } from '@bugsnag/browser'
import Vue from 'vue'

declare class BugsnagPluginVue extends Bugsnag.Plugin {
declare class BugsnagPluginVue extends Plugin {
constructor(Vue?: Vue)
}

Expand Down

0 comments on commit 8801042

Please sign in to comment.