UNPKG

@tresjs/leches

Version:

Tasty GUI for Vue controls 🍰

19 lines (18 loc) 525 B
import { ToRefs } from 'vue'; import { Control } from '../types'; export declare const CONTROLS_CONTEXT_KEY: unique symbol; export declare function useControlsProvider(uuid?: string): { [key: string]: Control; }; export declare const dispose: (uuid?: string) => void; export declare const useControls: (folderNameOrParams: string | { [key: string]: any; }, paramsOrOptions?: { [key: string]: any; } | { uuid?: string; }, options?: { uuid?: string; }) => Control | ToRefs<{ [key: string]: Control; }>;