seyfert-html-transcripts
Version:
A nicely formatted html transcript generator for seyfert.
11 lines (10 loc) • 357 B
TypeScript
import type { ActionRow, ActionRowMessageComponents } from 'seyfert';
import React from 'react';
export default function ComponentRow({ row, id }: {
row: ActionRow;
id: number;
}): React.JSX.Element;
export declare function Component({ component, id }: {
component: ActionRowMessageComponents;
id: number;
}): React.JSX.Element | undefined;