From 5db1ed6e3127d5acf8e11a27d86f1af2579c199d Mon Sep 17 00:00:00 2001 From: Daniel Zen Date: Wed, 15 Jul 2020 16:46:19 -0400 Subject: [PATCH] Required for simple TypeScript import [See TypeScript issue 5073](https://github.com/microsoft/TypeScript/issues/5073) --- index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/index.d.ts b/index.d.ts index 23e46ca..ff5d61a 100644 --- a/index.d.ts +++ b/index.d.ts @@ -1,4 +1,5 @@ declare module 'fast-json-stable-stringify' { function stringify(obj: any): string; + namespace stringify {} export = stringify; }