From b85f837a7784e7e955fafe25cd1c91d3a196cfbc Mon Sep 17 00:00:00 2001 From: Leon Machens Date: Thu, 4 Aug 2022 08:53:00 +0200 Subject: [PATCH] Fix nullable data in DirResult --- overwolf.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overwolf.d.ts b/overwolf.d.ts index 7693bf5..a3304c9 100644 --- a/overwolf.d.ts +++ b/overwolf.d.ts @@ -111,7 +111,7 @@ declare namespace overwolf.io { } interface DirResult extends Result { - data?: FileInDir[]; + data: FileInDir[] | null; } interface FileInDir {