Как читать из актива в угловой

private httpClient: HttpClient;

  constructor(http: HttpClient) {
    this.httpClient = http;
  }

this.httpClient.get('assets/Maze1.txt', { responseType: 'text' })
      .subscribe(data => console.log(data));
kutty39