UNPKG

@khmyznikov/pwa-install

Version:

PWA install dialog provide more convenience user experience and fix lack of native dialogs in some browsers.

18 lines (17 loc) 589 B
import { LitElement } from 'lit'; import { WebAppManifest } from 'web-app-manifest'; export default class PWAGalleryElement extends LitElement { screenshots: WebAppManifest['screenshots']; theme: 'default' | 'apple_desktop' | 'apple_mobile'; static get styles(): CSSStyleSheet; calcScrollSize: () => { scroller: Element; item: HTMLImageElement; } | undefined; scrollToNextPage: () => void; scrollToPrevPage: () => void; private _init; firstUpdated(): void; connectedCallback(): void; render(): import("lit").TemplateResult<1>; }