From 156537f141e1309be79a2e829b4bb8880fa241ca Mon Sep 17 00:00:00 2001 From: Nikolay Solovyov Date: Tue, 29 Jan 2019 19:19:00 +0100 Subject: [PATCH] Typings fix --- index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.d.ts b/index.d.ts index 74e9203..497501c 100644 --- a/index.d.ts +++ b/index.d.ts @@ -27,10 +27,10 @@ declare namespace FastCopy { }; } -declare function copy(object: any, options?: FastCopy.Options): T; +declare function copy(object: T, options?: FastCopy.Options): T; declare namespace copy { - function strictCopy(object: any, options?: FastCopy.Options): T; + function strictCopy(object: T, options?: FastCopy.Options): T; } export default copy;