Skip to content

Commit ef80352

Browse files
committed
fix(BottomSheet): types
1 parent b766fe4 commit ef80352

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bottomsheet/vue-3/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ declare module '@vue/runtime-core' {
7070
}
7171
}
7272

73-
export interface VueBottomSheetOptions extends Omit<BottomSheetOptions, 'view'> {
73+
interface VueBottomSheetOptions extends Partial<BottomSheetOptions> {
7474
view?: string | ViewBase;
7575
props?: any;
7676
}
7777

78-
export { BottomSheetPlugin, useBottomSheet };
78+
export { BottomSheetPlugin, VueBottomSheetOptions, useBottomSheet };

0 commit comments

Comments
 (0)