reports/frontend/node_modules/es-toolkit/dist/compat/predicate/matchesProperty.d.mts
jtricerolph 1c411e402e Add settings page for managing forecasting API key and URL via UI
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-07-20 14:37:36 +00:00

39 lines
No EOL
1.7 KiB
TypeScript

import { PropertyPath } from "../_internal/PropertyPath.mjs";
//#region src/compat/predicate/matchesProperty.d.ts
/**
* Creates a function that checks if a given target object matches a specific property value.
*
* @template T
* @template V
* @param path - The property path to check within the target object.
* @param srcValue - The value to compare against the property value in the target object.
* @returns Returns a function that takes a target object and returns
* `true` if the property value at the given path in the target object matches the provided value,
* otherwise returns `false`.
*
* @example
* const checkName = matchesProperty('name', 'Alice');
* console.log(checkName({ name: 'Alice' })); // true
* console.log(checkName({ name: 'Bob' })); // false
*/
declare function matchesProperty<T>(path: PropertyPath, srcValue: T): (value: any) => boolean;
/**
* Creates a function that checks if a given target object matches a specific property value.
*
* @template T
* @template V
* @param path - The property path to check within the target object.
* @param srcValue - The value to compare against the property value in the target object.
* @returns Returns a function that takes a target object and returns
* `true` if the property value at the given path in the target object matches the provided value,
* otherwise returns `false`.
*
* @example
* const checkNested = matchesProperty(['address', 'city'], 'New York');
* console.log(checkNested({ address: { city: 'New York' } })); // true
* console.log(checkNested({ address: { city: 'Los Angeles' } })); // false
*/
declare function matchesProperty<T, V>(path: PropertyPath, srcValue: T): (value: V) => boolean;
//#endregion
export { matchesProperty };