first commit

This commit is contained in:
2026-03-10 16:18:05 +00:00
commit 11f9c069b5
31635 changed files with 3187747 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
/**
* These are the versioned first-party plugins with some of the future third-party plugins mixed in for legacy support.
*/
import { ConfigPlugin } from '@expo/config-plugins';
import { ExpoConfig } from '@expo/config-types';
/**
* Config plugin to apply all of the custom Expo iOS config plugins we support by default.
* TODO: In the future most of this should go into versioned packages like expo-updates, etc...
*/
export declare const withIosExpoPlugins: ConfigPlugin<{
bundleIdentifier: string;
}>;
/**
* Config plugin to apply all of the custom Expo Android config plugins we support by default.
* TODO: In the future most of this should go into versioned packages like expo-updates, etc...
*/
export declare const withAndroidExpoPlugins: ConfigPlugin<{
package: string;
projectRoot: string;
}>;
export declare const withVersionedExpoSDKPlugins: ConfigPlugin;
export declare function getAutoPlugins(): string[];
export declare function getLegacyExpoPlugins(): string[];
export declare function withLegacyExpoPlugins(config: ExpoConfig): ExpoConfig;