/** * Options common to all clients */ type ClientOptions = { /** * Optional timeout, in seconds, for all server requests */ requestTimeout?: number; }; export type { ClientOptions };