ast-get-values-by-key
Version:
Extract values and paths from AST by keys OR set them by keys
17 lines (15 loc) • 331 B
TypeScript
declare const version: string;
interface Findings {
val: any;
path: string;
}
/**
* Extract values and paths from AST by keys OR set them by keys
*/
declare function getByKey(
originalInput: any,
whatToFind: string | string[],
originalReplacement?: any,
): any;
export { getByKey, version };
export type { Findings };