From 940cd6db73fc792183bed4488da22707f7f92561 Mon Sep 17 00:00:00 2001 From: Ted John Date: Sun, 19 Apr 2020 23:17:04 +0100 Subject: [PATCH] Fix type for isChecked in d.ts --- distribution/openrct2.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/distribution/openrct2.d.ts b/distribution/openrct2.d.ts index febc79ba21..219ee8ead4 100644 --- a/distribution/openrct2.d.ts +++ b/distribution/openrct2.d.ts @@ -672,7 +672,7 @@ declare global { interface CheckboxWidget extends Widget { text: string; - isChecked: number; + isChecked: boolean; onChanged: (isChecked: boolean) => void; }