//#region src/ContributorsCollection.d.ts /** * For a set of logins, the contributions under those users. */ type ContributorsContributions = Record; /** * For each contribution under a login, the issue/PR numbers that count as that type. */ type ContributorContributions = Record; declare class ContributorsCollection { #private; constructor(ignoredLogins?: RegExp[]); add(login: string | undefined, number: number, type: string): void; collect(): ContributorsContributions; } //#endregion export { ContributorContributions, ContributorsCollection, ContributorsContributions }; //# sourceMappingURL=ContributorsCollection.d.ts.map