From 53748da75e4f46dedbff9d80812a0d9037473a90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20B=C3=BCchele?= Date: Fri, 7 Jun 2019 08:11:23 -0700 Subject: [PATCH] UI improvements Summary: * expanding/collapsing nodes * memoizing table rows * adding sidebar Reviewed By: davidaurelio Differential Revision: D15621070 fbshipit-source-id: 9335259d3b4bc1348e917782918eb1e0f678ba17 --- flow-typed/npm/lodash.memoize_vx.x.x.js | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 flow-typed/npm/lodash.memoize_vx.x.x.js diff --git a/flow-typed/npm/lodash.memoize_vx.x.x.js b/flow-typed/npm/lodash.memoize_vx.x.x.js new file mode 100644 index 000000000..bc48e001c --- /dev/null +++ b/flow-typed/npm/lodash.memoize_vx.x.x.js @@ -0,0 +1,19 @@ +// flow-typed signature: 0eceddcdb50aa9bf578c375a12ef9aad +// flow-typed version: <>/lodash.memoize_v4.1.2/flow_v0.91.0 + +/** + * This is an autogenerated libdef stub for: + * + * 'lodash.memoize' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module 'lodash.memoize' { + declare function memoize(fn: T, resolver?: Function): T; + declare export default typeof memoize; +}