UNPKG

@smithy/util-endpoints

Version:
8 lines (7 loc) 270 B
export type GetAttrValue = string | boolean | { [key: string]: GetAttrValue; } | Array<GetAttrValue>; /** * Returns value corresponding to pathing string for an array or object. */ export declare const getAttr: (value: GetAttrValue, path: string) => GetAttrValue;