@nvq/flowtoken
Version:
Animated React components for streaming text and markdown with GitHub theme syntax highlighting (forked from flowtoken)
15 lines (14 loc) • 425 B
TypeScript
import React from "react";
interface MarkdownAnimateTextProps {
content: string;
sep?: string;
animation?: string | null;
animationDuration?: string;
animationTimingFunction?: string;
codeStyle?: any;
customComponents?: Record<string, any>;
imgHeight?: string;
isStreaming?: boolean;
}
declare const _default: React.NamedExoticComponent<MarkdownAnimateTextProps>;
export default _default;