react-server675fbba4
react-servertreemainpackagesreact-serverdevtoolsindex.d.ts
packages/react-server/devtools/index.d.tsts465 B293f0c6e
/**
 * React Server DevTools configuration.
 *
 * Activated via:
 * - CLI: `react-server dev --devtools`
 * - Config: `{ devtools: true }` in react-server.config.mjs
 *
 * When active, the devtools panel is injected automatically —
 * no component import needed.
 */
export interface DevToolsConfig {
  /**
   * Position of the floating devtools button.
   * @default "bottom-right"
   */
  position?: "bottom-right" | "bottom-left" | "top-right" | "top-left";
}