pwa-asset-generator
Version:
A JavaScript library that automates PWA asset generation and image declaration. It automatically generates icon and splash screen images, guided by Web App Manifest specs and Apple Human Interface guidelines. It also updates manifest.json and index.html f
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;
}