UNPKG

612 BTypeScriptView Raw
1import { ExpoConfig } from '@expo/config';
2import { ManifestOptions } from './WebpackPWAManifestPlugin.types';
3export declare function createPWAManifestFromExpoConfig(appJson: ExpoConfig): {
4 background_color: any;
5 description: any;
6 dir: any;
7 display: any;
8 lang: any;
9 name: any;
10 orientation: any;
11 prefer_related_applications: any;
12 related_applications: any;
13 scope: any;
14 short_name: any;
15 start_url: any;
16 theme_color: any;
17 crossorigin: any;
18 startupImages: any;
19 icons: any;
20};
21export declare function validateManifest(manifest: ManifestOptions): void;