UNPKG

nostr-hooks

Version:
9 lines (8 loc) 297 B
import { Nip29GroupChat } from '../../../types'; export declare const sendGroupChat: ({ relay, groupId, chat, onSuccess, onError, }: { relay: string; groupId: string; chat: Pick<Nip29GroupChat, "content" | "parentId">; onSuccess?: () => void; onError?: () => void; }) => void;