import { ConversationReference } from '../conversation/conversation-reference.mjs'; import '../account.mjs'; import '../membership-source.mjs'; import '../membership-source-types.mjs'; import '../membership-types.mjs'; import '../role.mjs'; import '../channel-id.mjs'; /** * State object passed to the bot token service. */ type TokenExchangeState = { /** * The connection name that was used. */ connectionName: string; /** * A reference to the conversation. */ conversation: ConversationReference; /** * A reference to a related parent conversation conversation. */ relatesTo?: ConversationReference; /** * The URL of the bot messaging endpoint. */ msAppId: string; }; export type { TokenExchangeState };