@apify/actors-mcp-server
Version:
Model Context Protocol Server for Apify
7 lines • 382 B
TypeScript
/**
* Recursively gets the value in a nested object for each key in the keys array.
* Each key can be a dot-separated path (e.g. 'a.b.c').
* Returns an object mapping each key to its resolved value (or undefined if not found).
*/
export declare function getValuesByDotKeys<T extends object>(obj: T, keys: string[]): Record<string, unknown>;
//# sourceMappingURL=generic.d.ts.map