22 lines
No EOL
987 B
TypeScript
22 lines
No EOL
987 B
TypeScript
/**
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License.
|
|
*/
|
|
import { ServiceClientCredentials } from "@azure/core-http";
|
|
import * as Models from "./models";
|
|
import * as Mappers from "./models/mappers";
|
|
import * as operations from "./operations";
|
|
import { TokenApiClientContext } from "./tokenApiClientContext";
|
|
declare class TokenApiClient extends TokenApiClientContext {
|
|
botSignIn: operations.BotSignIn;
|
|
userToken: operations.UserToken;
|
|
/**
|
|
* Initializes a new instance of the TokenApiClient class.
|
|
* @param credentials Subscription credentials which uniquely identify client subscription.
|
|
* @param [options] The parameter options
|
|
*/
|
|
constructor(credentials: ServiceClientCredentials, options?: Models.TokenApiClientOptions);
|
|
}
|
|
export { TokenApiClient, TokenApiClientContext, Models as TokenApiModels, Mappers as TokenApiMappers };
|
|
export * from "./operations";
|
|
//# sourceMappingURL=tokenApiClient.d.ts.map
|