Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

128
Visualizações
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 à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda