Skip to content

Commit a967738

Browse files
committed
Use Options type rather than any
1 parent 38bb6f2 commit a967738

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import { Octokit } from "@octokit/rest";
22

3-
import { createOrUpdateFiles } from "./create-or-update-files";
3+
import { createOrUpdateFiles, Options } from "./create-or-update-files";
44

55
const CreateOrUpdateFiles = function (octokit: Octokit | any) {
66
return {
7-
createOrUpdateFiles: (opts: any) => createOrUpdateFiles(octokit, opts),
7+
createOrUpdateFiles: (opts: Options) => createOrUpdateFiles(octokit, opts),
88
};
99
};
1010

0 commit comments

Comments
 (0)