UNPKG

@mastra/core

Version:

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

12 lines 434 B
import { MastraBundler } from '../bundler'; import type { IBundler } from '../bundler'; export interface IDeployer extends IBundler { deploy(outputDirectory: string): Promise<void>; } export declare abstract class MastraDeployer extends MastraBundler implements IDeployer { constructor({ name }: { name: string; }); abstract deploy(outputDirectory: string): Promise<void>; } //# sourceMappingURL=index.d.ts.map