Skip to content

Commit 639c181

Browse files
committed
chore: tsc fix
1 parent a11c89d commit 639c181

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bottomsheet/bottomsheet.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,13 +77,13 @@ export declare abstract class ViewWithBottomSheetBase extends View {
7777
* @param {BottomSheetOptions} options
7878
* @returns {View} view - the view shown in the BottomSheet
7979
*/
80-
public showBottomSheet(options: BottomSheetOptions): View;
80+
public showBottomSheet(options: BottomSheetOptions): ViewBase;
8181
}
8282
export function install(): void;
8383

8484
declare module '@nativescript/core/ui/core/view' {
8585
interface View {
8686
closeBottomSheet(...args: any): void;
87-
showBottomSheet(options: BottomSheetOptions): View;
87+
showBottomSheet(options: BottomSheetOptions): ViewBase;
8888
}
8989
}

0 commit comments

Comments
 (0)