UNPKG

discord-html-transcripts-fix

Version:

A nicely formatted html transcript generator for discord.js. Bugfix fork with support for the latest discord.js and Components v2.

9 lines (8 loc) 292 B
import { type ReactNode } from 'react'; export type TranscriptHeaderProps = { guildName: string; channelName: string; guildIcon?: string; children?: ReactNode; }; export declare function TranscriptHeader(props: TranscriptHeaderProps): import("react/jsx-runtime").JSX.Element;