Fix some typescript issues

This commit is contained in:
Matthias 2020-08-15 17:31:29 +02:00
parent ccfb300854
commit c303d8588c
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ const alerts = namespace('alerts');
export default class BotAlerts extends Vue {
@alerts.State activeMessages;
@alerts.Mutations removeAlert;
@alerts.Mutation removeAlert;
closeAlert() {
this.removeAlert();

View File

@ -29,7 +29,7 @@ const ftbot = namespace('ftbot');
export default class BotControls extends Vue {
forcebuyShow = false;
@ftbot.State botState: BotState;
@ftbot.State botState!: BotState;
@ftbot.Action startBot;