UNPKG

633 BTypeScriptView Raw
1import { ComponentInterface } from '../../stencil-public-runtime';
2/**
3 * @virtualProp {"ios" | "md"} mode - The mode determines which platform styles to use.
4 */
5export declare class Footer implements ComponentInterface {
6 /**
7 * If `true`, the footer will be translucent.
8 * Only applies when the mode is `"ios"` and the device supports
9 * [`backdrop-filter`](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter#Browser_compatibility).
10 *
11 * Note: In order to scroll content behind the footer, the `fullscreen`
12 * attribute needs to be set on the content.
13 */
14 translucent: boolean;
15 render(): any;
16}