You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
436 B
6 lines
436 B
import { ExpoConfig } from '@expo/config-types';
|
|
import { InfoPlist } from './IosConfig.types';
|
|
export declare const withUsesNonExemptEncryption: import("..").ConfigPlugin<void>;
|
|
export declare function getUsesNonExemptEncryption(config: Pick<ExpoConfig, 'ios'>): boolean | null;
|
|
export declare function setUsesNonExemptEncryption(config: Pick<ExpoConfig, 'ios'>, { ITSAppUsesNonExemptEncryption, ...infoPlist }: InfoPlist): InfoPlist;
|