import { html } from 'lit'; import { classMap } from 'lit/directives/class-map.js'; import { WebAppManifest } from 'web-app-manifest'; import { msg } from '@lit/localize'; const template = (name: string, description: string, installDescription: string, disableDescription: boolean, icon: string, manifest: WebAppManifest, installAvailable: any, hideDialog: any, howToForApple: any, howToRequested: boolean, toggleGallery: any, galleryRequested: boolean) => { const installDialogClassesApple = () => { return {available: installAvailable, 'how-to': howToRequested, gallery: galleryRequested }}; return html` `; }; export default template;