12 lines
392 B
TypeScript
12 lines
392 B
TypeScript
|
|
import type { AccessToken, TokenCredential } from "@azure/core-auth";
|
||
|
|
/**
|
||
|
|
* Authenticates a service principal with a JWT assertion.
|
||
|
|
*/
|
||
|
|
export declare class ClientAssertionCredential implements TokenCredential {
|
||
|
|
/**
|
||
|
|
* Only available in Node.js
|
||
|
|
*/
|
||
|
|
constructor();
|
||
|
|
getToken(): Promise<AccessToken | null>;
|
||
|
|
}
|
||
|
|
//# sourceMappingURL=clientAssertionCredential-browser.d.mts.map
|