/opt/canhelp/node_modules/google-auth-library/build/src/gtoken
Edit: /opt/canhelp/node_modules/google-auth-library/build/src/gtoken/getCredentials.d.ts (436B)
/**
* Credentials object.
*/
interface Credentials {
privateKey: string;
clientEmail?: string;
}
/**
* Given a keyFile, extract the key and client email if available
* @param keyFile Path to a json, pem, or p12 file that contains the key.
* @returns an object with privateKey and clientEmail properties
*/
declare function getCredentials(keyFilePath: string): Promise
;
export { getCredentials, Credentials };