UNPKG

oceanic-transcripts

Version:

A nicely formatted html transcript generator for oceanic.js.

11 lines (10 loc) 382 B
import React from 'react'; import type { MessageComponent, MessageActionRowComponent } from 'oceanic.js'; import type { RenderMessageContext } from '../../'; interface ComponentRowProps { row: MessageComponent | MessageActionRowComponent; id: number; context: RenderMessageContext; } declare const ComponentRow: React.FC<ComponentRowProps>; export default ComponentRow;