UNPKG

@fe6/water-pro

Version:

An enterprise-class UI design language and Vue-based implementation

17 lines (16 loc) 576 B
/** @format */ import type { ComputedRef, Ref } from 'vue'; import type { AdvanceState } from '../types/hooks'; import type { FormProps, FormSchema } from '../types/form'; interface UseAdvancedContext { advanceState: AdvanceState; emit: EmitType; getProps: ComputedRef<FormProps>; getSchema: ComputedRef<FormSchema[]>; formModel: Recordable; defaultValueRef: Ref<Recordable>; } export default function ({ advanceState, emit, getProps, getSchema, formModel, defaultValueRef, }: UseAdvancedContext): { handleToggleAdvanced: () => void; }; export {};