Fix TSC Error

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
Florian Bouillon 2019-12-02 17:26:24 +01:00
parent 2f91a15157
commit c53a4a4097
No known key found for this signature in database
GPG Key ID: B143FF27EF555D16

View File

@ -24,10 +24,8 @@ import AttributeIdentity from "./Interfaces/AttributeIdentity";
*/ */
export default class IgnoreAttribute export default class IgnoreAttribute
extends AttributeAbstract { extends AttributeAbstract {
public trigger(event: AttributeListeners, data?: any): boolean | void | object { public trigger(_: AttributeListeners, data?: any): boolean | void | object {
console.log("pouetemon")
data[this.input.getName()] = undefined data[this.input.getName()] = undefined
console.log(data)
return data return data
} }