UNPKG

@gguf/claw

Version:

Multi-channel AI gateway with extensible messaging integrations

27 lines (26 loc) 692 B
export type DiscordPluralKitConfig = { enabled?: boolean; token?: string; }; export type PluralKitSystemInfo = { id: string; name?: string | null; tag?: string | null; }; export type PluralKitMemberInfo = { id: string; name?: string | null; display_name?: string | null; }; export type PluralKitMessageInfo = { id: string; original?: string | null; sender?: string | null; system?: PluralKitSystemInfo | null; member?: PluralKitMemberInfo | null; }; export declare function fetchPluralKitMessageInfo(params: { messageId: string; config?: DiscordPluralKitConfig; fetcher?: typeof fetch; }): Promise<PluralKitMessageInfo | null>;