import { Component, OnInit } from '@angular/core';
import { Promocao } from '../../core/types/types';
import { PromocaoService } from '../../core/services/promocao.service';
@Component({
selector: 'app-promocoes',
standalone: false,
templateUrl: './promocoes.component.html',
styleUrl: './promocoes.component.css',
})
export class PromocoesComponent implements OnInit {
promocoes!: Promocao[];
constructor(private service: PromocaoService) {}
ngOnInit(): void {
this.service.listar().subscribe((res) => {
this.promocoes = res;
});
}
}
TYPES
export interface Promocao {
id: number;
destino: string;
imagem: string;
preco: number;
}
ERRO AO COMPILAR: Application bundle generation failed. [0.240 seconds]
X [ERROR] TS2740: Type 'Promocao' is missing the following properties from type 'Promocao[]': length, pop, push, concat, and 29 more. [plugin angular-compiler]
src/app/pages/promocoes/promocoes.component.ts:17:6:
17 │ this.promocoes = res;
╵ ~~~~~~~~~~~~~~