-
-
Notifications
You must be signed in to change notification settings - Fork 213
/
pwa-assets.d.ts
40 lines (32 loc) · 1.18 KB
/
pwa-assets.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/* WARNING: these virtual modules are meant to be used by integrations and not being consumed directly from applications */
declare module 'virtual:pwa-assets/head' {
export interface PWAAssetHeadLink {
id?: string
rel: 'apple-touch-startup-image' | 'apple-touch-icon' | 'icon'
href: string
media?: string
sizes?: string
type?: string
}
export interface ColorSchemeMeta {
name: string
content: string
}
export interface PWAAssetsHead {
links: PWAAssetHeadLink[]
themeColor?: ColorSchemeMeta
}
export const pwaAssetsHead: PWAAssetsHead
}
declare module 'virtual:pwa-assets/icons' {
import type { AppleSplashScreenLink, FaviconLink, HtmlLink, IconAsset } from '@vite-pwa/assets-generator/api'
export type PWAAssetIcon<T extends HtmlLink> = Omit<IconAsset<T>, 'buffer'>
export interface PWAAssetsIcons {
favicon: Record<string, PWAAssetIcon<FaviconLink>>
transparent: Record<string, PWAAssetIcon<HtmlLink>>
maskable: Record<string, PWAAssetIcon<HtmlLink>>
apple: Record<string, PWAAssetIcon<HtmlLink>>
appleSplashScreen: Record<string, PWAAssetIcon<AppleSplashScreenLink>>
}
export const pwaAssetsIcons: PWAAssetsIcons
}