UNPKG

@mastra/core

Version:

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

20 lines (17 loc) 567 B
import { MastraBundler, IBundler } from '../bundler/index.js'; import '../base-CeEVvwRi.js'; import '@opentelemetry/api'; import '../index-CquI0inB.js'; import 'stream'; import 'pino'; import '@opentelemetry/sdk-trace-base'; interface IDeployer extends IBundler { deploy(outputDirectory: string): Promise<void>; } declare abstract class MastraDeployer extends MastraBundler implements IDeployer { constructor({ name }: { name: string; }); abstract deploy(outputDirectory: string): Promise<void>; } export { type IDeployer, MastraDeployer };