Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

127
Vistas
Spread object into Map in TypeScript

Using TypeScript, is it possible to type the following Map more acurately?

export const animalsMap = new Map<AnimalIdsEnum, object>([
    [
        AnimalIdsEnum.sylvester,
        {
            id: AnimalIdsEnum.sylvester,
            ...new CatAnimalData("Sylvester", "Tweety");
        }
    ],
    [
        AnimalIdsEnum.tweety,
        {
            id: AnimalIdsEnum.tweety,
            ...new BirdAnimalData("Tweety", "Sylvester");
        },
    ],
]);

Where:

export class AbstractAnimalData {

    name:string,
}

export class CatAnimalData extends AbstractAnimalData {

    favouriteFood:string,
    // NB: Leaving out the constructor for brevity
}

export class BirdAnimalData extends AbstractAnimalData {
    
    archEnemy:string,
    // NB: Leaving out the constructor for brevity
}

Basically, this map structure is very convenient to use in practice, but I am not sure if it is possible to get it typed more accurately, given that:

  • I am spreading the animal data into the map
  • The value part of the map is the id plus the animal data (so more than just the XAnimalData type)

Note: In practice, the objects created by new CatAnimalData("Sylvester", "Tweety"); and new BirdAnimalData("Tweety", "Sylvester"); are imported from separate files. For convenience and clarity, I do not want to assign the id keys in those files, but only in the Map.

about 4 years ago · Juan Pablo Isaza
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda