flowtoken
Version:

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;