From a7d7b7639905d6ad031e1431c059f09e2a533fae Mon Sep 17 00:00:00 2001 From: Mike Holloway Date: Sat, 8 Jul 2023 09:58:08 +0100 Subject: [PATCH] CheckForUpdateResult should be string or null, not undefined --- overwolf.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overwolf.d.ts b/overwolf.d.ts index 778e9f2..5323b4e 100644 --- a/overwolf.d.ts +++ b/overwolf.d.ts @@ -5149,7 +5149,7 @@ declare namespace overwolf.extensions { interface CheckForUpdateResult extends Result { state?: "UpToDate" | "UpdateAvailable" | "PendingRestart"; //should be changed in the future to the enum "ExtensionUpdateState" - updateVersion?: string; + updateVersion: string | null; } interface ServiceProvidersDataResult extends Result {