Convert all remaining files to typescript.

This commit is contained in:
Jas Singh
2024-07-26 23:11:33 -07:00
parent ca5dcc629b
commit b511d76e11
84 changed files with 2075 additions and 1987 deletions

View File

@@ -72,7 +72,7 @@ class BrightnessService extends Service {
// overwriting the connect method, let's you
// change the default event that widgets connect to
connect(event = 'screen-changed', callback) {
connect(event: string = 'screen-changed', callback: any) {
return super.connect(event, callback);
}
}