// rnxsim/sdk — the scriptable sim-driving surface. // // exports the SimClient class plus the transport-agnostic inspect verbs it is // built from. this entry MUST stay browser-safe (Contrast's in-browser agent // imports it against an in-process preview bridge), so the node-only ws // `connect()` lives on the ROOT `rnxsim` entry, not here. export * from './sim-client' export * from '../cli/commands/inspect/core' export * from '../cli/commands/inspect/actions' export { waitForSootsimIdle } from '../cli/commands/inspect/settling' export type { WaitForSootsimIdleOptions, WaitForSootsimIdleResult, } from '../cli/commands/inspect/settling'