flowtoken
Version:

15 lines (14 loc) • 428 B
TypeScript
import React from 'react';
interface DefaultCodeProps {
node: any;
className?: string;
children: React.ReactNode & React.ReactNode[];
style?: React.CSSProperties;
codeStyle?: any;
animateText: (text: any) => React.ReactNode;
animation?: string;
animationDuration?: string;
animationTimingFunction?: string;
}
declare const DefaultCode: React.FC<DefaultCodeProps>;
export default DefaultCode;