react-xml-viewer
Version:
Simple xml viewer component for React
14 lines (13 loc) • 450 B
TypeScript
export interface TextElementProps {
text: string;
hasSiblings: boolean;
indentation: string;
isText: boolean;
keyValue: string;
}
export interface TextElementItemProps {
children: string;
keyValue: string;
}
export declare function TextElementItem(props: TextElementItemProps): import("react/jsx-runtime").JSX.Element;
export declare function TextElement(props: TextElementProps): import("react/jsx-runtime").JSX.Element;