Files
memecoin-botV2/.pnpm-store/v10/files/05/74f04286d813ccd9a1fe377d163e270031ca763cc07e9ca7916a91219280f3b7eb62f4349851a6ef42e1f7c3793dfbf8b9427b384093055dd8048955a1b136

20 lines
663 B
Plaintext

import Pool from './pool'
export default PoolStats
declare class PoolStats {
constructor (pool: Pool)
/** Number of open socket connections in this pool. */
connected: number
/** Number of open socket connections in this pool that do not have an active request. */
free: number
/** Number of pending requests across all clients in this pool. */
pending: number
/** Number of queued requests across all clients in this pool. */
queued: number
/** Number of currently active requests across all clients in this pool. */
running: number
/** Number of active, pending, or queued requests across all clients in this pool. */
size: number
}