UNPKG

react-pretty-json

Version:

JSON to HTML generator with colors and collapsible brackets.

19 lines (16 loc) 437 B
// Generated by dts-bundle v0.5.0 // Dependencies for this module: // ../react declare module 'react-pretty-json' { import * as React from 'react'; export interface Props { json: any; spaces?: number; } export interface State { } export default class JsonView extends React.Component<Props, State> { static defaultProps: Props; render(): JSX.Element; } }