UNPKG

@mastra/core

Version:

Mastra is a framework for building AI-powered applications and agents with a modern TypeScript stack.

10 lines 406 B
import type { AITracingEvent } from '../types.js'; import { BaseExporter } from './base.js'; import type { BaseExporterConfig } from './base.js'; export declare class ConsoleExporter extends BaseExporter { name: string; constructor(config?: BaseExporterConfig); protected _exportEvent(event: AITracingEvent): Promise<void>; shutdown(): Promise<void>; } //# sourceMappingURL=console.d.ts.map