UNPKG

243 BTypeScriptView Raw
1import { CompatClient } from './compat-client';
2/**
3 * Part of `@stomp/stompjs`.
4 *
5 * @internal
6 */
7export declare class HeartbeatInfo {
8 private client;
9 constructor(client: CompatClient);
10 outgoing: number;
11 incoming: number;
12}