toolbar-footer.d.ts 824B

12345678910111213141516171819202122232425262728
  1. import { ElementRef, Renderer } from '@angular/core';
  2. import { Config } from '../../config/config';
  3. import { Ion } from '../ion';
  4. import { Footer as IFooter } from '../../navigation/nav-interfaces';
  5. import { ViewController } from '../../navigation/view-controller';
  6. /**
  7. * @name Footer
  8. * @description
  9. * Footer is a root component of a page that sits at the bottom of the page.
  10. * Footer can be a wrapper for `ion-toolbar` to make sure the content area is sized correctly.
  11. *
  12. * @usage
  13. *
  14. * ```html
  15. * <ion-content></ion-content>
  16. *
  17. * <ion-footer>
  18. * <ion-toolbar>
  19. * <ion-title>Footer</ion-title>
  20. * </ion-toolbar>
  21. * </ion-footer>
  22. * ```
  23. *
  24. */
  25. export declare class Footer extends Ion implements IFooter {
  26. constructor(config: Config, elementRef: ElementRef, renderer: Renderer, viewCtrl: ViewController);
  27. }