/**
 * Node.js-specific platform adapters entry point
 *
 * This module provides full platform utilities including Node.js support.
 */
export { BrowserPlatformAdapter } from "./platform/browser";
export { NodePlatformAdapter } from "./platform/node";
export type { VanaPlatformAdapter } from "./platform/interface";
export { detectPlatform, createPlatformAdapter, createPlatformAdapterFor, isPlatformSupported, getPlatformCapabilities, } from "./platform/utils";
export { createNodePlatformAdapter, createBrowserPlatformAdapter, createPlatformAdapterSafe, } from "./platform/browser-safe";
