ui-ingredients
Version:
Headless component library for Svelte powered by zag
7 lines (6 loc) • 314 B
TypeScript
import type { HtmlIngredientProps } from '../types.js';
export interface TreeViewTreeProps extends HtmlIngredientProps<'div', HTMLDivElement> {
}
declare const TreeViewTree: import("svelte").Component<TreeViewTreeProps, {}, "ref">;
type TreeViewTree = ReturnType<typeof TreeViewTree>;
export default TreeViewTree;