From 2e0cd4cbe4475ee8500cae098367922ac801c67d Mon Sep 17 00:00:00 2001 From: Misha Kaletsky <15040698+mmkal@users.noreply.github.com> Date: Tue, 14 Jun 2022 17:44:28 -0400 Subject: [PATCH] Add setFs to types --- node_stream_zip.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/node_stream_zip.d.ts b/node_stream_zip.d.ts index f076c72..c5a4290 100644 --- a/node_stream_zip.d.ts +++ b/node_stream_zip.d.ts @@ -194,6 +194,8 @@ declare class StreamZip { close(callback?: (err?: any) => void): void; static async: typeof StreamZip.StreamZipAsync; + + static setFs(fsLike: any): void; } export = StreamZip;