import { BaseChannel } from './base-channel'; import type { ChannelConfig } from '../types'; /** * WebSocket 通道实现 * 对应 Solid Notifications Protocol 的 WebSocketChannel2023 */ export declare class WebSocketChannel extends BaseChannel { private ws; private reconnectAttempts; private readonly maxReconnectAttempts; private readonly reconnectDelay; constructor(config: ChannelConfig); connect(): Promise; disconnect(): void; } //# sourceMappingURL=websocket-channel.d.ts.map