File tree 2 files changed +3
-2
lines changed
scripts/update-endpoints/templates
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,8 @@ declare namespace Octokit {
55
55
| string
56
56
| { username: string; password: string; on2fa: () => Promise<string> }
57
57
| { clientId: string; clientSecret: string }
58
- | { (): string | Promise<string> };
58
+ | { (): string | Promise<string> }
59
+ | any;
59
60
userAgent?: string;
60
61
previews?: string[];
61
62
baseUrl?: string;
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ declare namespace Octokit {
46
46
47
47
export interface Options {
48
48
authStrategy?: any;
49
- auth?: string | { username: string; password: string; on2fa: () => Promise< string> } | { clientId: string; clientSecret: string; } | { (): (string | Promise< string> ) } ;
49
+ auth?: string | { username: string; password: string; on2fa: () => Promise< string> } | { clientId: string; clientSecret: string; } | { (): (string | Promise< string> ) } | any ;
50
50
userAgent?: string;
51
51
previews?: string[];
52
52
baseUrl?: string;
You can’t perform that action at this time.
0 commit comments