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

31
node_modules/expo/build/environment/ExpoGo.d.ts generated vendored Normal file
View File

@@ -0,0 +1,31 @@
type ExpoGoProjectConfig = {
mainModuleName?: string;
debuggerHost?: string;
logUrl?: string;
developer?: {
tool?: string;
[key: string]: any;
};
packagerOpts?: ExpoGoPackagerOpts;
};
export type ExpoGoPackagerOpts = {
hostType?: string;
dev?: boolean;
strict?: boolean;
minify?: boolean;
urlType?: string;
urlRandomness?: string;
lanType?: string;
[key: string]: any;
};
/**
* Returns a boolean value whether the app is running in Expo Go.
*/
export declare function isRunningInExpoGo(): boolean;
/**
* @hidden
* Returns an Expo Go project config from the manifest or `null` if the app is not running in Expo Go.
*/
export declare function getExpoGoProjectConfig(): ExpoGoProjectConfig | null;
export {};
//# sourceMappingURL=ExpoGo.d.ts.map