/** * Platform adapters entry point * * This module provides platform-specific utilities for different environments. * Use this when you need platform detection or adapter creation. */ export { BrowserPlatformAdapter } from "./platform/browser.js"; export { NodePlatformAdapter } from "./platform/node.js"; export type { VanaPlatformAdapter } from "./platform/interface.js"; export { detectPlatform, createPlatformAdapter, createPlatformAdapterFor, isPlatformSupported, getPlatformCapabilities, } from "./platform/utils.js"; export { createNodePlatformAdapter, createBrowserPlatformAdapter, createPlatformAdapterSafe, } from "./platform/browser-safe.js";