refactor: migrate renderers to ts (#1296)

* refactor: migrate renderers to ts

* fix: copilot review
This commit is contained in:
Marc Emmanuel 2026-02-02 11:32:08 +01:00 committed by GitHub
parent e8b0b19ff0
commit 3ba8338508
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
31 changed files with 2094 additions and 1396 deletions

View file

@ -727,8 +727,8 @@ class BurgModule {
delete burg.coa;
}
removeBurgIcon(burg.i);
removeBurgLabel(burg.i);
removeBurgIcon(burg.i!);
removeBurgLabel(burg.i!);
}
}
window.Burgs = new BurgModule();

View file

@ -50,6 +50,7 @@ export interface State {
formName?: string;
fullName?: string;
form?: string;
military?: any[];
provinces?: number[];
}