@expo/config-plugins
Version:
A library for Expo config plugins
7 lines (6 loc) • 486 B
TypeScript
import type { ExpoConfig } from '@expo/config-types';
import type { AndroidManifest } from './Manifest';
export declare const withAllowBackup: import("..").ConfigPlugin;
export declare function getAllowBackup(config: Pick<ExpoConfig, 'android'>): boolean;
export declare function setAllowBackup(config: Pick<ExpoConfig, 'android'>, androidManifest: AndroidManifest): AndroidManifest;
export declare function getAllowBackupFromManifest(androidManifest: AndroidManifest): boolean | null;