UNPKG

@microsoft/agents-hosting

Version:

Microsoft 365 Agents SDK for JavaScript

14 lines (13 loc) 482 B
import { Activity } from '@microsoft/agents-activity'; import { TranscriptLogger } from './transcriptLogger'; /** * A transcript logger that logs activities to the console. */ export declare class ConsoleTranscriptLogger implements TranscriptLogger { /** * Logs an activity to the console. * @param activity The activity to log. * @throws Will throw an error if the activity is not provided. */ logActivity(activity: Activity): void | Promise<void>; }