You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
1.7 KiB
24 lines
1.7 KiB
2 years ago
|
import { GoogleAuth } from './auth/googleauth';
|
||
|
export { AuthClient } from './auth/authclient';
|
||
|
export { Compute, ComputeOptions } from './auth/computeclient';
|
||
|
export { CredentialBody, CredentialRequest, Credentials, JWTInput, } from './auth/credentials';
|
||
|
export { GCPEnv } from './auth/envDetect';
|
||
|
export { GoogleAuthOptions, ProjectIdCallback } from './auth/googleauth';
|
||
|
export { IAMAuth, RequestMetadata } from './auth/iam';
|
||
|
export { IdTokenClient, IdTokenProvider } from './auth/idtokenclient';
|
||
|
export { Claims, JWTAccess } from './auth/jwtaccess';
|
||
|
export { JWT, JWTOptions } from './auth/jwtclient';
|
||
|
export { Impersonated, ImpersonatedOptions } from './auth/impersonated';
|
||
|
export { Certificates, CodeChallengeMethod, CodeVerifierResults, GenerateAuthUrlOpts, GetTokenOptions, OAuth2Client, OAuth2ClientOptions, RefreshOptions, TokenInfo, VerifyIdTokenOptions, } from './auth/oauth2client';
|
||
|
export { LoginTicket, TokenPayload } from './auth/loginticket';
|
||
|
export { UserRefreshClient, UserRefreshClientOptions, } from './auth/refreshclient';
|
||
|
export { AwsClient, AwsClientOptions } from './auth/awsclient';
|
||
|
export { IdentityPoolClient, IdentityPoolClientOptions, } from './auth/identitypoolclient';
|
||
|
export { ExternalAccountClient, ExternalAccountClientOptions, } from './auth/externalclient';
|
||
|
export { BaseExternalAccountClient, BaseExternalAccountClientOptions, } from './auth/baseexternalclient';
|
||
|
export { CredentialAccessBoundary, DownscopedClient, } from './auth/downscopedclient';
|
||
|
export { PluggableAuthClient, PluggableAuthClientOptions, } from './auth/pluggable-auth-client';
|
||
|
export { DefaultTransporter } from './transporters';
|
||
|
declare const auth: GoogleAuth<import("./auth/googleauth").JSONClient>;
|
||
|
export { auth, GoogleAuth };
|