Skip to content
Snippets Groups Projects
Commit 37194cdf authored by Benedikt Magnus's avatar Benedikt Magnus
Browse files

Updated dependencies.

parent 5b8ce9d3
No related branches found
No related tags found
No related merge requests found
......@@ -79,7 +79,7 @@ export default class HandlingDefinition
result: Localisation.texts.maybeResponse,
}
],
handlerFunction: async (message, result): Promise<void> => this.generalModule.reply(message, result)
handlerFunction: async (message: Message, result: TokenString): Promise<void> => this.generalModule.reply(message, result)
},
// Initialise registration:
{
......@@ -90,7 +90,7 @@ export default class HandlingDefinition
result: Localisation.texts.registration,
},
],
handlerFunction: async (message, result): Promise<void> =>
handlerFunction: async (message: Message, result: TokenString): Promise<void> =>
this.generalModule.continue(message, State.Registration, result, ComponentBuilder.yesNo)
},
// Confirm registration:
......
......@@ -15,6 +15,8 @@
"../scripts/.eslintrc.json"
],
"rules": {
"@typescript-eslint/no-empty-function": "off"
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-unsafe-argument": "off",
"@typescript-eslint/no-unsafe-assignment": "off"
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment