import * as React from 'react'; interface MethodsRendererProps { methods: Array<{ name: string; description: string; returns: any; params: Array; tags: any; }>; } const MethodsRenderer: React.SFC = ({ children }) => { return
{children}
; }; export default MethodsRenderer;