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 a11c89d commit 639c181Copy full SHA for 639c181
src/bottomsheet/bottomsheet.d.ts
@@ -77,13 +77,13 @@ export declare abstract class ViewWithBottomSheetBase extends View {
77
* @param {BottomSheetOptions} options
78
* @returns {View} view - the view shown in the BottomSheet
79
*/
80
- public showBottomSheet(options: BottomSheetOptions): View;
+ public showBottomSheet(options: BottomSheetOptions): ViewBase;
81
}
82
export function install(): void;
83
84
declare module '@nativescript/core/ui/core/view' {
85
interface View {
86
closeBottomSheet(...args: any): void;
87
- showBottomSheet(options: BottomSheetOptions): View;
+ showBottomSheet(options: BottomSheetOptions): ViewBase;
88
89
0 commit comments