@pod-protocol/cli
Version:
Command-line interface for PoD Protocol (Prompt or Die) AI Agent Communication Protocol
16 lines • 901 B
TypeScript
import { BaseChannelHandler } from "./base-handler.js";
import { BroadcastOptions, ListOptions, ParticipantsOptions, MessagesOptions } from "./types.js";
export declare class ChannelHandlers extends BaseChannelHandler {
private displayer;
constructor(context: any);
handleCreate(options: any): Promise<void>;
handleInfo(channelId: string): Promise<void>;
handleList(options: ListOptions): Promise<void>;
handleJoin(channelId: string): Promise<void>;
handleLeave(channelId: string): Promise<void>;
handleBroadcast(channelId: string, message: string, options: BroadcastOptions): Promise<void>;
handleInvite(channelId: string, invitee: string): Promise<void>;
handleParticipants(channelId: string, options: ParticipantsOptions): Promise<void>;
handleMessages(channelId: string, options: MessagesOptions): Promise<void>;
}
//# sourceMappingURL=handlers.d.ts.map