import { Entity } from '@mikro-orm/core' import { BaseMapObject } from '#entities/base/mapObject' @Entity() export class MapObject extends BaseMapObject { public async cache() { try { return this } catch (error) { console.error(error) return {} } } }