Check to find any anonymous type structures used.
Configuration
{
"type": "Anonymous",
"props": {
"severity": "ERROR"
}
}
Valid
typedef Data = {
var name:String;
var value:Int;
}
Invalid
var data:{ name:String, value:Int };
Anonymous structure "data" found, use "typedef"