/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ type EqualityFn any> = (newArgs: Parameters, lastArgs: Parameters) => boolean; type MemoizedFn any> = { clear: () => void; (this: ThisParameterType, ...args: Parameters): ReturnType; }; /** * @hidden */ export declare function memoizeOne any>(resultFn: TFunc, isEqualFn?: EqualityFn): MemoizedFn; export {};