6 lines
205 B
TypeScript
Raw Permalink Normal View History

2026-05-31 13:21:13 +02:00
import { PropertyPath } from "../_internal/PropertyPath.js";
//#region src/compat/object/property.d.ts
declare function property<T, R>(path: PropertyPath): (obj: T) => R;
//#endregion
export { property };