UNPKG

nativescript-bottom-navigation

Version:

NativeScript plugin to add a bottom navigation component for Android & iOS

18 lines (17 loc) 695 B
import { View, Property } from 'tns-core-modules/ui/core/view'; import { ImageSource } from 'tns-core-modules/image-source'; interface BottomNavigationTabProps { title: string; icon: string | ImageSource; isSelectable?: boolean; } export declare abstract class BottomNavigationTabBase extends View implements BottomNavigationTabProps { title: string; icon: string | ImageSource; isSelectable?: boolean; constructor(args?: BottomNavigationTabProps); abstract getNativeIcon(): any; } export declare const isSelectableProperty: Property<BottomNavigationTabBase, boolean>; export declare const iconProperty: Property<BottomNavigationTabBase, ImageSource>; export {};