Is it possible to create a map with multiple types? For example in Typescript you can do something like this:
tiles = new Array < Tile | Gate > ();
You have an array of with Tiles and Gates but as of now, it's not synched with the schema. I can add only one type @type({map: Tile}). How do I write @type with multiple classes e.g. Tile and Gate without creating a separate map for each?