Initial commit

This commit is contained in:
2025-12-07 14:32:46 +00:00
commit 0a0969b8af
4726 changed files with 536089 additions and 0 deletions

21
node_modules/mqtt/build/lib/KeepaliveManager.d.ts generated vendored Executable file
View File

@@ -0,0 +1,21 @@
import type MqttClient from './client';
import { type Timer } from './get-timer';
import type { TimerVariant } from './shared';
export default class KeepaliveManager {
private _keepalive;
private timerId;
private timer;
private destroyed;
private counter;
private client;
private _keepaliveTimeoutTimestamp;
private _intervalEvery;
get keepaliveTimeoutTimestamp(): number;
get intervalEvery(): number;
get keepalive(): number;
constructor(client: MqttClient, variant: TimerVariant | Timer);
private clear;
setKeepalive(value: number): void;
destroy(): void;
reschedule(): void;
}