We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d4e5b7 commit 1da0509Copy full SHA for 1da0509
src/bottomsheet/vue/index.ts
@@ -1,5 +1,4 @@
1
import { NativeScriptVue } from 'nativescript-vue';
2
-import Vue from 'vue';
3
import { BottomSheetOptions } from '../bottomsheet';
4
import { View } from '@nativescript/core';
5
@@ -9,8 +8,8 @@ export interface VueBottomSheetOptions extends Omit<BottomSheetOptions, 'view'>
9
8
}
10
11
declare module 'nativescript-vue' {
12
- interface NativeScriptVue<V = View> extends Vue {
13
- $showBottomSheet(component: typeof Vue, options?: VueBottomSheetOptions): Promise<any>;
+ interface NativeScriptVue<V = View> extends NativeScriptVue {
+ $showBottomSheet(component: typeof NativeScriptVue, options?: VueBottomSheetOptions): Promise<any>;
14
$closeBottomSheet(...args);
15
16
0 commit comments