askme-cli
Version:
askme-cli MCP server that collects user's next plan or confirmation through terminal window
16 lines • 338 B
TypeScript
export interface AskMeArgs {
what_we_did?: string;
}
export interface ImageAttachment {
id: string;
data: string;
mimeType: string;
size: number;
placeholder: string;
}
export interface SocketMessage {
ask_me: string;
timestamp: number;
images?: ImageAttachment[];
}
//# sourceMappingURL=index.d.ts.map