From 12b63845bcedd6e9f542bdbf3fdc33e1bb890e0a Mon Sep 17 00:00:00 2001 From: Resi Respati Date: Tue, 27 Feb 2018 14:59:35 +0700 Subject: [PATCH] clarify what types.d.ts is for --- src/types.d.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/types.d.ts b/src/types.d.ts index 4065722..1a10316 100644 --- a/src/types.d.ts +++ b/src/types.d.ts @@ -1,2 +1,5 @@ // type shim for nodejs' `require()` syntax +// for stricter node.js typings, remove this and install `@types/node` declare const require: (module: string) => any; + +// add your custom typings here