UNPKG

@anilkumarthakur/vue3-json-viewer

Version:

A beautiful, customizable JSON viewer component for Vue 3 with TypeScript support, dark/light mode, expand/collapse controls, and syntax highlighting.

10 lines 725 B
import { Plugin } from 'vue'; import { JsonViewer, JsonNode } from './components'; import { JsonViewerProps, JsonNodeProps, JsonValue, JsonPrimitive, JsonObject, JsonArray, JsonViewerTheme, ThemeColors, ContainerKind, JsonViewerEmits, ToggleEventPayload, CopyEventPayload } from './types'; /** Vue plugin for global registration of JsonViewer components */ declare const JsonViewerPlugin: Plugin; export { JsonViewer, JsonNode }; export { JsonViewerPlugin }; export default JsonViewerPlugin; export type { JsonViewerProps, JsonNodeProps, JsonValue, JsonPrimitive, JsonObject, JsonArray, JsonViewerTheme, ThemeColors, ContainerKind, JsonViewerEmits, ToggleEventPayload, CopyEventPayload, }; //# sourceMappingURL=index.d.ts.map