@expo/config-plugins
Version:
A library for Expo config plugins
7 lines (6 loc) • 468 B
TypeScript
import type { ExpoConfig } from '@expo/config-types';
import type { AndroidManifest } from './Manifest';
import type { ConfigPlugin } from '../Plugin.types';
export declare const withPredictiveBackGesture: ConfigPlugin;
export declare function setPredictiveBackGesture(config: Pick<ExpoConfig, 'android'>, androidManifest: AndroidManifest): AndroidManifest;
export declare function getPredictiveBackGestureValue(config: Pick<ExpoConfig, 'android'>): "false" | "true";