UNPKG

togezr

Version:

Better together_

13 lines 588 B
import { IGithubRepo, IShortGithubRepo } from '../interfaces/IGitHubRepo'; export interface IGithubAccountRepo { repo: IShortGithubRepo | IGithubRepo; accountName: string; } export declare class GithubReposRepository { private getKey; get: (accountName: string) => IGithubAccountRepo[]; add: (accountName: string, repo: IShortGithubRepo | IGithubRepo) => boolean; remove: (accountName: string, repo: IShortGithubRepo | IGithubRepo) => boolean; } export declare const githubReposRepository: GithubReposRepository; //# sourceMappingURL=githubReposRepository.d.ts.map