enviando post angular 8

JavaScript
if (this.recebe_nome)
        {
            this.servidor.envia_post({
                nome: this.recebe_nome,
                emp_id: (this.permissions.tipo_user < 2)?this.emp_id.id:this.permissions.empresa
            }, '/postos/create').subscribe(data =>
            {
                this.toastr.info("Cadastrado com sucesso!");
                this.router.navigate(['../list'], {relativeTo: this.activatedRoute});
            }, err =>
            {
                this.toastr.warning("Erro: " + err.message);
            });
        }
Source

Also in JavaScript: