UNPKG

seyfert-html-transcripts

Version:
12 lines (11 loc) 315 B
import type { Message } from 'seyfert'; export type Profile = { author: string; avatar?: string; roleColor?: string; roleIcon?: string; roleName?: string; bot?: boolean; verified?: boolean; }; export declare function buildProfiles(messages: Message[]): Promise<Record<string, Profile>>;