From 6b352fa411de26696f883dc8d80298a751a5cbf0 Mon Sep 17 00:00:00 2001 From: Zachary Sakowitz Date: Sat, 20 Nov 2021 17:40:20 -0800 Subject: [PATCH] Add type declarations + JSDoc --- index.d.ts | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 index.d.ts diff --git a/index.d.ts b/index.d.ts new file mode 100644 index 0000000..7967bf9 --- /dev/null +++ b/index.d.ts @@ -0,0 +1,2 @@ +/** A JavaScript port of the Unix utility 'true'. Returns the Boolean value `true` */ +export = () => true;