More typings to classes, commands, events, funcs

This commit is contained in:
Christer Warén
2023-06-06 08:05:54 +03:00
parent 227e0bcaaa
commit 40cd3a9ec5
14 changed files with 84 additions and 39 deletions
+1 -3
View File
@@ -5,12 +5,10 @@ import { station } from "./Stations";
export default class Streamer {
map: any;
mode: any | null;
logger: any;
mode: "auto" | "manual" = "manual";
constructor() {
this.map = new Map();
this.mode = null;
}
init(client: RadioClient){