@happy-table/vue3
Version:
A high-performance Vue 3 table component for B2B systems with TypeScript support
14 lines (13 loc) • 462 B
TypeScript
/**
* Get nested value from object using dot notation path
* @param obj - The object to get value from
* @param path - Dot notation path (e.g., 'user.profile.name')
* @returns The nested value or undefined if not found
*/
export declare function getNestedValue(obj: any, path: string): any;
/**
* Format value as string for display
* @param value - Value to format
* @returns Formatted string
*/
export declare function formatValue(value: any): string;