mirror of
https://github.com/Tribufu/TribufuJS
synced 2026-08-21 10:31:07 +00:00
Add oauth2 types
This commit is contained in:
parent
d4e8315e05
commit
337f41e723
3 changed files with 114 additions and 1 deletions
29
src/index.ts
29
src/index.ts
|
|
@ -30,4 +30,31 @@ export class TribufuClient {
|
|||
public getId(): BigInt {
|
||||
return this.id;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
import {
|
||||
OAuth2AuthorizeRequest,
|
||||
OAuth2CodeResponse,
|
||||
OAuth2RevokeRequest,
|
||||
OAuth2TokenRequest,
|
||||
OAuth2TokenResponse,
|
||||
} from './oauth2';
|
||||
|
||||
import type {
|
||||
OAuth2GrantType,
|
||||
OAuth2ResponseType,
|
||||
OAuth2TokenHintType,
|
||||
OAuth2TokenType,
|
||||
} from './oauth2';
|
||||
|
||||
export {
|
||||
OAuth2AuthorizeRequest,
|
||||
OAuth2CodeResponse,
|
||||
OAuth2GrantType,
|
||||
OAuth2ResponseType,
|
||||
OAuth2RevokeRequest,
|
||||
OAuth2TokenHintType,
|
||||
OAuth2TokenRequest,
|
||||
OAuth2TokenResponse,
|
||||
OAuth2TokenType,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue