getPropertyByPath.d.ts 193 B

12345
  1. declare function getPropertyByPath(source: {
  2. [key: string]: unknown;
  3. }, path: string | Array<string>): unknown;
  4. export { getPropertyByPath };
  5. //# sourceMappingURL=getPropertyByPath.d.ts.map