mewwme-transcripts
Version:
Private html transcript generator for mewwme discord bot
12 lines (11 loc) • 318 B
TypeScript
import { type Message } from 'discord.js';
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>>;