Annotate functions in connections and port away from implicit onFoo

This commit is contained in:
Tobias Fella
2025-08-08 11:16:27 +02:00
parent 279b611754
commit cd70e2b47f
26 changed files with 52 additions and 52 deletions

View File

@@ -23,7 +23,7 @@ LoginStep {
Connections {
target: Controller
function onConnectionAdded(connection) {
function onConnectionAdded(connection: NeoChatConnection): void {
connection.syncDone.connect(() => root.closeDialog());
}
}