Files
Fluxup_PAP/node_modules/expo/build/async-require/hmr.d.ts
2026-03-10 16:18:05 +00:00

17 lines
689 B
TypeScript

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