/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/tokenOptions.d.ts (1071B)
import { GaxiosOptions, GaxiosPromise } from 'gaxios'; interface Transporter { request(opts: GaxiosOptions): GaxiosPromise; } interface TokenOptions { /** * Path to a .json, .pem, or .p12 key file. */ keyFile?: string; /** * The raw private key value. */ key?: string; /** * The service account email address. */ email?: string; /** * The issuer claim for the JWT. */ iss?: string; /** * The subject claim for the JWT. This is used for impersonation. */ sub?: string; /** * The space-delimited list of scopes for the requested token. */ scope?: string | string[]; /** * Additional claims to include in the JWT payload. */ additionalClaims?: { [key: string]: any; }; /** * Eagerly refresh unexpired tokens when they are within this many * milliseconds from expiring. * Defaults to 0. */ eagerRefreshThresholdMillis?: number; transporter?: Transporter; } export { Transporter, TokenOptions };