showHomeBottomTab.d.ts 288 B

1234567891011
  1. export interface ShowHomeBottomTabProps {
  2. show: boolean;
  3. }
  4. declare function showHomeBottomTab(args: ShowHomeBottomTabProps): Promise<{}>;
  5. declare namespace showHomeBottomTab {
  6. var version: {
  7. android: string;
  8. ios: string;
  9. };
  10. }
  11. export default showHomeBottomTab;