@ark-ui/vue
Version:
A collection of unstyled, accessible UI components for Vue, utilizing state machines for seamless interaction.
15 lines (14 loc) • 633 B
TypeScript
import { JsonNode } from '@zag-js/json-tree-utils';
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
interface JsonTreeViewKeyNodeProps {
/**
* The node to render.
*/
node: JsonNode;
/**
* Whether to show quotes on the key.
*/
showQuotes?: boolean;
}
declare const _default: DefineComponent<JsonTreeViewKeyNodeProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<JsonTreeViewKeyNodeProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
export default _default;