// SPDX-FileCopyrightText: 2024 LiveKit, Inc. // // SPDX-License-Identifier: Apache-2.0 /** * Options common to all clients */ export type ClientOptions = { /** * Optional timeout, in seconds, for all server requests */ requestTimeout?: number; };