Skip to content

Commit 2f8365b

Browse files
committed
fix(bottomsheet): missing correct typings
1 parent a1ce226 commit 2f8365b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bottomsheet/vue/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export interface VueBottomSheetOptions extends Omit<BottomSheetOptions, 'view'>
99

1010
declare module 'nativescript-vue' {
1111
interface NativeScriptVue <V = View> extends Vue{
12-
$showBottomSheet(component: typeof Vue, options?: VueBottomSheetOptions);
12+
$showBottomSheet(component: typeof Vue, options?: VueBottomSheetOptions): Promise<any>;
1313
$closeBottomSheet(...args);
1414
}
1515
}

0 commit comments

Comments
 (0)