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

132
Vistas
Faltan propiedades para el tipo (mecanografiado)

En el siguiente:

 @Mutation remove_bought_products(productsToBeRemoved: Array<I.Product>) { const tmpProductsInVendingMachine: Array<I.Product> = Object.values(this.productsInVendingMachine); const reducedProductsInVendingMachine: Array<I.Product> = tmpProductsInVendingMachine.reduce((tmpProductsInVendingMachine, { id, ...rest }) => ({ ...tmpProductsInVendingMachine, ...{ [id]: { id, ...rest } } }), {}); productsToBeRemoved.forEach(({ id }) => reducedProductsInVendingMachine[id].productQty--); ...

da:

 TS2740: Type '{}' is missing the following properties from type 'Product[]': length, pop, push, concat, and 28 more. 250 | 251 | const tmpProductsInVendingMachine: Array<I.Product> = Object.values(this.productsInVendingMachine); > 252 | const reducedProductsInVendingMachine: Array<I.Product> = | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 253 | tmpProductsInVendingMachine.reduce((tmpProductsInVendingMachine, { id, ...rest }) => ({ ...tmpProductsInVendingMachine, ...{ [id]: { id, ...rest } } }), {}); 254 | productsToBeRemoved.forEach(({ id }) => reducedProductsInVendingMachine[id].productQty--);

¿Qué tipo devuelve el reductor?

Los productos son objetos que necesitan ser indexados sobre su id; p.ej

 [{ id: 1, productName: "coke", productPrice: 2, productQty: 20 }, ... ]
about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

reducedProductsInVendingMachine no es una Array , es un Object .

Una posibilidad es convertir {} al tipo correcto en el parámetro de inicialización de Array.prototype.reduce() :

 const reducedProductsInVendingMachine = tmpProductsInVendingMachine.reduce( (tmpProductsInVendingMachine, { id, ...rest }) => ({ ...tmpProductsInVendingMachine, ...{ [id]: { id, ...rest } } }), {} as { [key: I.Product['id']]: I.Product } );

Observe cómo se compila la implementación y el tipo de variable reducedProductsInVendingMachine se infiere correctamente a { [key: I.Product['id']]: I.Product } (con I.Product['id'] resuelto como sea)

about 4 years ago · Juan Pablo Isaza Denunciar
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