/opt/canhelp/node_modules/google-auth-library/build/src/gtoken
NameSizeModeActions
errorWithCode.d.ts1380644editdlrm
errorWithCode.js9140644editdlrm
getCredentials.d.ts4360644editdlrm
getCredentials.js48640644editdlrm
getToken.d.ts7120644editdlrm
getToken.js23820644editdlrm
googleToken.d.ts23420644editdlrm
googleToken.js44440644editdlrm
jwsSign.d.ts11560644editdlrm
jwsSign.js18540644editdlrm
revokeToken.d.ts4190644editdlrm
revokeToken.js14100644editdlrm
tokenHandler.d.ts15320644editdlrm
tokenHandler.js36060644editdlrm
tokenOptions.d.ts10710644editdlrm
tokenOptions.js7050644editdlrm
Edit: /opt/canhelp/node_modules/google-auth-library/build/src/gtoken/jwsSign.d.ts (1156B)
import { TokenOptions } from './tokenOptions'; /** * Interface for the JWT payload required for signing. */ interface JwsSignPayload { /** The issuer claim for the JWT. */ iss?: string; /** The space-delimited list of scopes for the requested token. */ scope?: string | string[]; /** The audience for the token. */ aud: string; /** The expiration time of the token, in seconds since the epoch. */ exp: number; /** The time the token was issued, in seconds since the epoch. */ iat: number; /** The subject claim for the JWT, used for impersonation. */ sub?: string; /** Additional claims to include in the JWT payload. */ [key: string]: any; } /** * Builds the JWT payload for signing. * @param tokenOptions The options for the token. * @returns The JWT payload. */ declare function buildPayloadForJwsSign(tokenOptions: TokenOptions): JwsSignPayload; /** * Creates a signed JWS (JSON Web Signature). * @param tokenOptions The options for the token. * @returns The signed JWS. */ declare function getJwsSign(tokenOptions: TokenOptions): string; export { buildPayloadForJwsSign, getJwsSign };