/** * ClientCache -- owns the default adapter map construction. * * Extracted from device-manager.ts (D9.1) to separate adapter-factory wiring * from the routing facade. Reads env vars to seed device IDs on android/ios * adapters and produces the canonical 5-platform adapter map. * * Behaviour-preserving: identical construction order and env precedence as * the legacy `new DeviceManager()` default branch. */ import type { CorePlatformAdapter } from "../adapters/platform-adapter.js"; import type { Platform } from "../platform-types.js"; export interface DefaultAdapters { adapters: Map; envSeededTarget?: Platform; } /** * Build the default 5-platform adapter map (android, ios, desktop, aurora, * browser). Honours DEVICE_ID/ANDROID_SERIAL/IOS_DEVICE_ID env vars. */ export declare function buildDefaultAdapters(): DefaultAdapters; //# sourceMappingURL=client-cache.d.ts.map