//#region src/options.d.ts interface AllContributorsForRepositoryOptions { auth?: string; ignoredLogins: RegExp[]; labelAcceptingPrs: string; labelTypeBug: string; labelTypeDocs: string; labelTypeIdeas: string; labelTypeTool: string; owner: string; repo: string; } interface RawAllContributorsForRepositoryOptions { /** * GitHub auth token to query the API with, if necessary for private repositories and/or to avoid rate limiting. */ auth?: string; /** * Regular expressions for usernames to ignore commits from, such as bot users. */ ignoredLogins?: RegExp[]; /** * Label to indicate an issue is accepting pull requests. */ labelAcceptingPrs?: string; /** * Label to indicate an issue is for a bug. */ labelTypeBug?: string; /** * Label to indicate an issue is for documentation. */ labelTypeDocs?: string; /** * Label to indicate an issue is for a feature. */ labelTypeIdeas?: string; /** * Label to indicate an issue is for tooling. */ labelTypeTool?: string; /** * The owner of the repository to query, such as `"JoshuaKGoldberg"`. */ owner: string; /** * The name of the repository to query, such as `"all-contributors-for-repository"`. */ repo: string; } declare function fillInOptions(rawOptions: RawAllContributorsForRepositoryOptions): AllContributorsForRepositoryOptions; //#endregion export { AllContributorsForRepositoryOptions, RawAllContributorsForRepositoryOptions, fillInOptions }; //# sourceMappingURL=options.d.ts.map