UNPKG

ideaz-element

Version:

<p align="center"> <a href="" target="_blank" rel="noopener noreferrer"> <img src="./docs/public/logo.svg" alt="Ideaz Element" width="180" style="width: 180px;" /> </a> </p>

14 lines (12 loc) 628 B
import { CrudProps } from '../props'; import { Pagination } from '../../../types'; export declare function useCrudConfig(props: CrudProps, emit: any): { handleSearch: import('lodash-unified').DebouncedFunc<() => void>; handleReset: () => void; handlePaginationChange: (val: any) => void; middleFormData: globalThis.WritableComputedRef<any>; isUseFormDataStorage: globalThis.ComputedRef<boolean | "">; middlePagination: globalThis.WritableComputedRef<Pagination>; isUsePaginationStorage: globalThis.ComputedRef<number | false | "" | undefined>; updateTableProPagination: (data?: any) => void; };