@fantinodavide/discord-html-transcripts
Version:
A nicely formatted html transcript generator for discord.js.
15 lines (14 loc) • 367 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<{
_roles: Record<string, any>;
_channels: Record<string, any>;
}>;