File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
- import { mount , shallowMount } from './mount'
1
+ import { mount , shallowMount , MountingOptions } from './mount'
2
2
import { RouterLinkStub } from './components/RouterLinkStub'
3
3
import { VueWrapper } from './vueWrapper'
4
4
import { DOMWrapper } from './domWrapper'
@@ -12,5 +12,6 @@ export {
12
12
VueWrapper ,
13
13
DOMWrapper ,
14
14
config ,
15
- flushPromises
15
+ flushPromises ,
16
+ MountingOptions
16
17
}
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ type SlotDictionary = {
49
49
[ key : string ] : Slot
50
50
}
51
51
52
- interface MountingOptions < Props , Data = { } > {
52
+ export interface MountingOptions < Props , Data = { } > {
53
53
data ?: ( ) => { } extends Data ? any : Data extends object ? Partial < Data > : any
54
54
props ?: Props
55
55
/** @deprecated */
You can’t perform that action at this time.
0 commit comments