UNPKG

@farris/ui-vue

Version:

Farris Vue, a Farris Design based Vue3 component library.

16 lines (15 loc) 476 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[], param: { id: string; data: any; }) => any; currentSelectedNodeId?: Ref<string>; currentSelectedOutsideNodeId: Ref<string>; triggerOutsideClick: (schemaId: string) => void; }