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

17
node_modules/expo/build/async-require/hmr.d.ts generated vendored Normal file
View File

@@ -0,0 +1,17 @@
type LogLevel = 'trace' | 'info' | 'warn' | 'error' | 'log' | 'group' | 'groupCollapsed' | 'groupEnd' | 'debug';
/**
* HMR Client that receives from the server HMR updates and propagates them
* runtime to reflects those changes.
*/
declare const HMRClient: {
enable(): void;
disable(): void;
registerBundle(requestUrl: string): void;
log(level: LogLevel, data: any[]): void;
setup(platformOrOptions: string | {
isEnabled: boolean;
}, bundleEntry?: string, host?: string, port?: number | string, isEnabledOrUndefined?: boolean, scheme?: string): void;
_onMetroError(error: unknown): void;
};
export default HMRClient;
//# sourceMappingURL=hmr.d.ts.map