21 lines
No EOL
598 B
TypeScript
21 lines
No EOL
598 B
TypeScript
/**
|
|
* @module botframework-connector
|
|
*/
|
|
/**
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License.
|
|
*/
|
|
import { DefaultAzureCredential } from '@azure/identity';
|
|
export interface IJwtTokenProviderFactory {
|
|
createAzureServiceTokenProvider(appId: string): DefaultAzureCredential;
|
|
}
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
export declare class JwtTokenProviderFactory implements IJwtTokenProviderFactory {
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
createAzureServiceTokenProvider(appId: string): DefaultAzureCredential;
|
|
}
|
|
//# sourceMappingURL=jwtTokenProviderFactory.d.ts.map
|