UNPKG

@cblink/finches-ui

Version:

A Component Library for Vue 3

9 lines (8 loc) 397 B
import type { ComputedRef, Slots } from 'vue'; export declare function useTableForm(propsRef: ComputedRef<any>, slots: Slots, fetch: (opt?: any) => Promise<void>): { useSearchForm: ComputedRef<boolean>; getFormProps: ComputedRef<any>; handleSearchInfoChange: (info: any) => void; getFormSlotKeys: ComputedRef<(string | null)[]>; replaceFormSlotKey: (key: string) => string; };