boton-service.service.ts 324 Bytes
import { Injectable } from '@angular/core';
// import { HttpClient } from '@angular/common/http';

@Injectable({
  providedIn: 'root'
})
export class BotonServiceService {

  constructor(/*private http: String*/) { }

  getBotones() {
    // return this.http.get('http://localhost:5555/comprobantes');
    return [1];
  }
}