Skip to content

Commit f909bdc

Browse files
aegilopsCopilot
andauthored
Update src/componentSubmission.ts
Co-authored-by: Copilot <[email protected]>
1 parent 51bde41 commit f909bdc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/componentSubmission.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export interface SubmitOpts {
2525
componentDetectionBinPath?: string; // optional path to component-detection executable
2626
}
2727

28-
export async function getLanguageIntersection(octokit: any, owner: string, repo: string, languages: string[] | undefined, quiet: boolean = false): Promise<string[]> {
28+
export async function getLanguageIntersection(octokit: Octokit, owner: string, repo: string, languages: string[] | undefined, quiet: boolean = false): Promise<string[]> {
2929
const langResp = await octokit.request('GET /repos/{owner}/{repo}/languages', { owner, repo });
3030
const repoLangs = Object.keys(langResp.data || {});
3131
const wanted = languages;

0 commit comments

Comments
 (0)