From 5b883351c4f3c9ca3453bd36c837994464d35949 Mon Sep 17 00:00:00 2001 From: Chaiwat Ekkaewnumchai Date: Thu, 5 Sep 2019 03:15:14 -0700 Subject: [PATCH] data-inspector/utils.tsx Summary: _typescript_ Reviewed By: danielbuechele Differential Revision: D17180421 fbshipit-source-id: 1264f402d1b5071617462179c80e6c951e513f0e --- types/string-natural-compare.d.tsx | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 types/string-natural-compare.d.tsx diff --git a/types/string-natural-compare.d.tsx b/types/string-natural-compare.d.tsx new file mode 100644 index 000000000..d81df8827 --- /dev/null +++ b/types/string-natural-compare.d.tsx @@ -0,0 +1,10 @@ +/** + * Copyright 2018-present Facebook. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + * @format + */ + +declare module 'string-natural-compare' { + export default function naturalCompare(a: string, b: string): number; +}