UNPKG

xatto

Version:

xatto is View Layer Library based on Function and Context using VirtualDOM. This is developed by forking from jorgebucaran/superfine.

11 lines (10 loc) 270 B
/** * Get an item from an object using separator notation. * * @typeparam {T} * @param {any} target * @param {string} key * @param {string} separator * @return {T} */ export declare function deepGet<T>(target: any, key: string, separator?: string): T;