Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
types: Use directly import and enhance component type def
  • Loading branch information
potato4d committed Jan 16, 2019
commit ef8ecb9ade7fe50ac9f37b11d36b0c37c83994ac
6 changes: 3 additions & 3 deletions types/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import * as VueJS from 'vue'
import _Vue, { Component } from 'vue'

declare function wrap(
Vue: VueJS.default,
Component: VueJS.VueConstructor<VueJS.default>
Vue: typeof _Vue,
Component: Component
): HTMLElement

export default wrap