8000 Expose isWrapper in export · AlbertBrand/vue-function-api@10d79c6 · GitHub
[go: up one dir, main page]

Skip to content

Commit 10d79c6

Browse files
committed
Expose isWrapper in export
1 parent 1d532fe commit 10d79c6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import Vue, { VueConstructor } from 'vue';
22
import { SetupContext } from './types/vue';
33
import { currentVue } from './runtimeContext';
4-
import { Wrapper } from './wrappers';
4+
import { Wrapper, isWrapper } from './wrappers';
55
import { install } from './install';
66
import { mixin } from './setup';
77

@@ -25,7 +25,7 @@ if (currentVue && typeof window !== 'undefined' && window.Vue) {
2525
_install(window.Vue);
2626
}
2727

28-
export { plugin, Wrapper };
28+
export { plugin, Wrapper, isWrapper };
2929
export { set } from './reactivity';
3030
export * from './ts-api';
3131
export * from './functions/state';

0 commit comments

Comments
 (0)
0