UNPKG

doric-framework

Version:

A column-based widget UI framework for Vue 3

7 lines (6 loc) 274 B
import type { UseDoricInputOptions } from './types'; declare const useDoricInput: (param: string, options?: UseDoricInputOptions) => { value: string; }; declare const useDoricOutput: (inputKey: string) => (value: any) => void; export { useDoricInput, useDoricOutput, };