UNPKG

pagamio-frontend-commons-lib

Version:

Pagamio library for Frontend reusable components like the form engine and table container

9 lines (8 loc) 400 B
import type { QueryConfigProps } from '../types'; export declare const createQueryConfig: (startDate: string | undefined, endDate: string | undefined, options: Partial<QueryConfigProps>, filters?: { [key: string]: string | string[] | null; }) => QueryConfigProps; /** * Helper function to get nested object value by path */ export declare const getNestedValue: (obj: any, path: string) => any;