@mastra/core
Version:
The core foundation of the Mastra framework, providing essential components and interfaces for building AI-powered applications.
20 lines (17 loc) • 570 B
text/typescript
import { MastraBundler, IBundler } from '../bundler/index.cjs';
import '../base-BihKcqDY.cjs';
import '@opentelemetry/api';
import '../index-CquI0inB.cjs';
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 };