From fb19f11fd9d0b90c0470a38770c0543153dfa56e Mon Sep 17 00:00:00 2001 From: Gregor Martynus Date: Wed, 22 Jan 2020 14:51:21 -0800 Subject: [PATCH] fix(typescript): `authStrategy` key in Octokit constructor options --- index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/index.d.ts b/index.d.ts index b628ab17..032ad17b 100644 --- a/index.d.ts +++ b/index.d.ts @@ -50,6 +50,7 @@ declare namespace Octokit { export interface EmptyParams {} export interface Options { + authStrategy?: any; auth?: | string | { username: string; password: string; on2fa: () => Promise }