//#region src/memoize.d.ts /** * Memoizes a function based on its string identifier. * * @param fn - The function to memoize. * @returns A memoized version of the input function. */ declare const memoizeOnId: (fn: (id: string) => T) => (id: string) => T | undefined; //#endregion export { memoizeOnId }; //# sourceMappingURL=memoize.d.cts.map