/** * (c) Facebook, Inc. and its affiliates. Confidential and proprietary. * * @emails oncall+recoil * @flow strict-local * @format */ 'use strict'; import type { TreeCacheImplementation } from './Recoil_TreeCacheImplementationType'; const { LRUCache } = require('./Recoil_LRUCache'); const { TreeCache } = require('./Recoil_TreeCache'); declare function treeCacheLRU(maxSize: number, mapNodeValue?: (mixed) => mixed): TreeCacheImplementation; module.exports = treeCacheLRU;