Commit iniziale
This commit is contained in:
20
node_modules/@azure/msal-common/dist/account/ClientCredentials.d.ts
generated
vendored
Normal file
20
node_modules/@azure/msal-common/dist/account/ClientCredentials.d.ts
generated
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
export type ClientAssertionConfig = {
|
||||
clientId: string;
|
||||
tokenEndpoint?: string;
|
||||
};
|
||||
export type ClientAssertionCallback = (config: ClientAssertionConfig) => Promise<string>;
|
||||
/**
|
||||
* Client Assertion credential for Confidential Clients
|
||||
*/
|
||||
export type ClientAssertion = {
|
||||
assertion: string | ClientAssertionCallback;
|
||||
assertionType: string;
|
||||
};
|
||||
/**
|
||||
* Client Credentials set for Confidential Clients
|
||||
*/
|
||||
export type ClientCredentials = {
|
||||
clientSecret?: string;
|
||||
clientAssertion?: ClientAssertion;
|
||||
};
|
||||
//# sourceMappingURL=ClientCredentials.d.ts.map
|
||||
Reference in New Issue
Block a user