@uiw/react-json-view
Version:
JSON viewer for react.
11 lines (10 loc) • 360 B
TypeScript
import { type SectionElementResult } from '../store/Section';
interface NestedCloseProps<T extends object> extends SectionElementResult<T> {
expandKey: string;
level: number;
}
export declare const NestedClose: {
<T extends object>(props: NestedCloseProps<T>): import("react/jsx-runtime").JSX.Element | null;
displayName: string;
};
export {};