UNPKG

@farris/ui-vue

Version:

Farris Vue, a Farris Design based Vue3 component library.

11 lines (10 loc) 321 B
import { Ref } from "vue"; export interface UseDataView { getData: () => any; } export interface UseOutlineNode { getIcon: (componentsItem: any) => string; getTitle: (componentsItem: any, parentComponentsItem: any) => any; onChanged: (selections: any[]) => any; currentSelectedNodeId?: Ref<string>; }