6 lines
152 B
TypeScript
6 lines
152 B
TypeScript
import { PropertyPath } from '../_internal/PropertyPath.js';
|
|
|
|
declare function property<T, R>(path: PropertyPath): (obj: T) => R;
|
|
|
|
export { property };
|