From 5f996dc62260f713c49f6b41684081b46c79d40f Mon Sep 17 00:00:00 2001 From: Amit Tsur Date: Sun, 27 Oct 2024 12:43:28 +0200 Subject: [PATCH] Changed the properties of ReadFileOptions to optional --- overwolf.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/overwolf.d.ts b/overwolf.d.ts index a489e0e..2e84934 100644 --- a/overwolf.d.ts +++ b/overwolf.d.ts @@ -95,9 +95,9 @@ declare namespace overwolf.io { } interface ReadFileOptions { - encoding: enums.eEncoding; - maxBytesToRead: number; - offset: number; + encoding?: enums.eEncoding; + maxBytesToRead?: number; + offset?: number; } interface ListenFileOptions {