UNPKG

824 BTypeScriptView Raw
1import { ElementRef, Renderer } from '@angular/core';
2import { Config } from '../../config/config';
3import { Ion } from '../ion';
4import { Footer as IFooter } from '../../navigation/nav-interfaces';
5import { 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 */
25export declare class Footer extends Ion implements IFooter {
26 constructor(config: Config, elementRef: ElementRef, renderer: Renderer, viewCtrl: ViewController);
27}