From b006b2d9ca040a674e02d80defd884ce54f5e725 Mon Sep 17 00:00:00 2001 From: streamich Date: Thu, 15 Jun 2023 13:03:40 +0200 Subject: [PATCH] =?UTF-8?q?feat:=20=F0=9F=8E=B8=20include=20"writeSync"=20?= =?UTF-8?q?method=20for=20sync=20writer?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/node-to-fsa/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node-to-fsa/types.ts b/src/node-to-fsa/types.ts index a1ccab424..1c7f47f32 100644 --- a/src/node-to-fsa/types.ts +++ b/src/node-to-fsa/types.ts @@ -5,7 +5,7 @@ import type { IFs } from '..'; */ export type NodeFsaFs = Pick< IFs, - 'promises' | 'openSync' | 'fsyncSync' | 'statSync' | 'closeSync' | 'readSync' | 'truncateSync' + 'promises' | 'openSync' | 'fsyncSync' | 'statSync' | 'closeSync' | 'readSync' | 'truncateSync' | 'writeSync' >; export interface NodeFsaContext {