UNPKG

@mastra/core

Version:

The core foundation of the Mastra framework, providing essential components and interfaces for building AI-powered applications.

7 lines 281 B
import type { Mastra } from './mastra'; import type { RuntimeContext } from './runtime-context'; export type DynamicArgument<T> = T | (({ runtimeContext, mastra }: { runtimeContext: RuntimeContext; mastra?: Mastra; }) => Promise<T> | T); //# sourceMappingURL=types.d.ts.map