add missing documentation for OidcAuthResult

Signed-off-by: Hasan Ozdemir <21654050+nodify-at@users.noreply.github.com>
This commit is contained in:
Hasan Ozdemir
2021-12-09 21:37:57 +01:00
parent abd6ff3430
commit e0c63b37db
2 changed files with 5 additions and 3 deletions
+1 -3
View File
@@ -543,9 +543,7 @@ export type OAuthState = {
origin?: string;
};
// Warning: (ae-missing-release-tag) "OidcAuthResult" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
// @public
export type OidcAuthResult = {
tokenset: TokenSet;
userinfo: UserinfoResponse;
@@ -56,6 +56,10 @@ type OidcImpl = {
client: Client;
};
/**
* authentication result for the OIDC which includes the token set and user information (a profile response sent by OIDC server)
* @public
*/
export type OidcAuthResult = {
tokenset: TokenSet;
userinfo: UserinfoResponse;