UNPKG

pwa-asset-generator

Version:

Automates PWA asset generation and image declaration. Automatically generates icon and splash screen images, favicons and mstile images. Updates manifest.json and index.html files with the generated images according to Web App Manifest specs and Apple Hum

21 lines (20 loc) 692 B
export declare enum HTMLMetaNames { favicon = "favicon", appleTouchIcon = "appleTouchIcon", appleMobileWebAppCapable = "appleMobileWebAppCapable", appleLaunchImage = "appleLaunchImage", appleLaunchImageDarkMode = "appleLaunchImageDarkMode", msTileImage = "msTileImage" } export interface HTMLMeta { [HTMLMetaNames.favicon]?: string; [HTMLMetaNames.appleTouchIcon]?: string; [HTMLMetaNames.appleMobileWebAppCapable]: string; [HTMLMetaNames.appleLaunchImage]?: string; [HTMLMetaNames.appleLaunchImageDarkMode]?: string; [HTMLMetaNames.msTileImage]?: string; } export interface HTMLMetaSelector { name: keyof HTMLMeta; selector: string; }