Hyperlinkv0.8.0-beta.28

Node

Node.ListenOptionstypesrc/internal/nodeCore.ts:261
ListenOptions

Shared options for unix / http / ws (and low-level *Server) — rpc path / health / ipc unlink. Not the TCP bind port (platform layer owns that).

modelsunixhttpws
export type ListenOptions = {
  readonly path?: HttpRouter.PathInput;
  readonly serialization?: Layer.Layer<RpcSerialization.RpcSerialization>;
  readonly health?: { readonly path?: HttpRouter.PathInput };
  readonly node?: string | { readonly key: string };
  readonly unlink?: boolean;
  /**
   * Directory advertise conflict policy for this listen (call-site; wins over node stamp).
   * Omit / `"inherit"` → continue resolve chain.
   */
  readonly onConflict?: OnConflict;
};
Referenced by 2 symbols