svelte-tree-view
Version:
Display JSON objects in a customizable tree-view
12 lines (11 loc) • 405 B
TypeScript
import type { PropsStore } from './props';
import type { RootElementStore } from './root-element';
import type { TreeStore } from './tree';
export { createPropsStore } from './props';
export { createRootElementStore } from './root-element';
export { createTreeStore } from './tree';
export interface Stores {
propsStore: PropsStore;
rootElementStore: RootElementStore;
treeStore: TreeStore;
}