UNPKG

@mastra/core

Version:

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

7 lines 305 B
import type { ReadableStream } from 'stream/web'; import type { ConsumeStreamOptions } from '../aisdk/v5/compat/index.js'; export interface MastraBaseStream<T> { get fullStream(): ReadableStream<T>; consumeStream(options?: ConsumeStreamOptions): Promise<void>; } //# sourceMappingURL=base.d.ts.map