UNPKG

react-xml-viewer

Version:
10 lines (9 loc) 287 B
import { ReactNode } from 'react'; export interface CommentTagProps { indentation: string; children: ReactNode; isInline: boolean; level: number; keyValue: string; } export declare function CommentTag(props: CommentTagProps): import("react/jsx-runtime").JSX.Element;