UNPKG

mastra

Version:
20 lines 670 B
import type { Editor } from '../init/mcp-docs-server-install.js'; import type { Component, LLMProvider } from '../init/utils.js'; interface CreateProjectArgs { default?: boolean; components?: Component[]; llm?: LLMProvider; llmApiKey?: string; example?: boolean; timeout?: string | boolean; dir?: string; projectName?: string; mcp?: Editor; skills?: string[]; template?: string | boolean; observability?: boolean; observabilityProject?: string; } export declare const createProject: (projectNameArg: string | undefined, args: CreateProjectArgs) => Promise<void>; export {}; //# sourceMappingURL=create-project.d.ts.map