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
TypeScript
export declare enum HTMLMetaNames {
favicon = "favicon",
appleTouchIcon = "appleTouchIcon",
appleMobileWebAppCapable = "appleMobileWebAppCapable",
appleLaunchImage = "appleLaunchImage",
appleLaunchImageDarkMode = "appleLaunchImageDarkMode",
msTileImage = "msTileImage"
}
export interface HTMLMeta {
[]?: string;
[]?: string;
[]: string;
[]?: string;
[]?: string;
[]?: string;
}
export interface HTMLMetaSelector {
name: keyof HTMLMeta;
selector: string;
}