@nvq/flowtoken
Version:
Animated React components for streaming text and markdown with GitHub theme syntax highlighting (forked from flowtoken)
9 lines (8 loc) • 351 B
TypeScript
import React from 'react';
interface CustomRendererProps {
rows: any[];
stylesheet: any;
useInlineStyles: boolean;
}
declare const customCodeRenderer: ({ animation, animationDuration, animationTimingFunction }: any) => ({ rows, stylesheet, useInlineStyles }: CustomRendererProps) => React.JSX.Element[];
export default customCodeRenderer;