File tree 1 file changed +15
-7
lines changed
1 file changed +15
-7
lines changed Original file line number Diff line number Diff line change @@ -6,16 +6,24 @@ import { createAppAuth } from "../src";
6
6
7
7
function expectType < T > ( what : T ) { }
8
8
9
- export async function readmeExample ( ) {
10
- const auth = createAppAuth ( {
11
- appId : 1 ,
12
- privateKey : "-----BEGIN PRIVATE KEY-----\n..." ,
13
- clientId : "lv1.1234567890abcdef" ,
14
- clientSecret : "1234567890abcdef12341234567890abcdef1234" ,
15
- } ) ;
9
+ const auth = createAppAuth ( {
10
+ appId : 1 ,
11
+ privateKey : "-----BEGIN PRIVATE KEY-----\n..." ,
12
+ clientId : "lv1.1234567890abcdef" ,
13
+ clientSecret : "1234567890abcdef12341234567890abcdef1234" ,
14
+ } ) ;
16
15
16
+ export async function readmeExample ( ) {
17
17
// Retrieve an oauth-access token
18
18
const userAuthentication = await auth ( { type : "oauth-user" , code : "123456" } ) ;
19
19
20
20
expectType < "token" > ( userAuthentication . type ) ;
21
21
}
22
+
23
+ export async function issue268 ( ) {
24
+ // Retrieve an oauth-access token
25
+ const userAuthentication = await auth ( { type : "installation" } ) ;
26
+
27
+ expectType < "token" > ( userAuthentication . type ) ;
28
+ expectType < "tokenType" > ( userAuthentication . tokenType ) ;
29
+ }
You can’t perform that action at this time.
0 commit comments