1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 11:03:00 +01:00

Fix type for isChecked in d.ts

This commit is contained in:
Ted John
2020-04-19 23:17:04 +01:00
parent 3c424be180
commit 940cd6db73

View File

@@ -672,7 +672,7 @@ declare global {
interface CheckboxWidget extends Widget {
text: string;
isChecked: number;
isChecked: boolean;
onChanged: (isChecked: boolean) => void;
}