6 lines
225 B
TypeScript
Raw Normal View History

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