UNPKG

@seriousme/opifex

Version:

MQTT client & server for Deno & NodeJS

10 lines 475 B
import type { Context } from "../context.ts"; import { type ConnackPacket } from "../deps.ts"; /** * Handles the CONNACK packet received from the MQTT broker * @param packet - The CONNACK packet containing the connection acknowledgment * @param ctx - The connection context * @returns Promise that resolves when handling is complete */ export declare function handleConnack(packet: ConnackPacket, ctx: Context): Promise<void>; //# sourceMappingURL=handleConnack.d.ts.map