import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; import { BugReport, BugReportResult, BugReportTarget, BugReportTargetService } from '../bug-report.interfaces'; import { BugReportService } from '../bug-report.service'; export interface GitHubData { repositoryUrls: { [key: string]: string; }; user: string; token: string; } export declare class GitHubRepository implements BugReportTarget { owner: string; name: string; } export declare class GitHubService implements BugReportTargetService { private http; private bugReportService; private readonly user; private readonly token; readonly targets: { [key: string]: GitHubRepository; }; constructor(gitHubData: GitHubData, http: HttpClient, bugReportService: BugReportService); publishIssue(initBugReport: BugReport, targetKey?: string): Observable; getTargetName(targetKey?: string): string; }