@mastra/core
Version:
Mastra is a framework for building AI-powered applications and agents with a modern TypeScript stack.
9 lines • 455 B
TypeScript
import type { execa as execaType } from 'execa';
/**
* Lazily imports execa using a runtime-constructed module specifier.
* This prevents bundlers (Vite/Rollup/esbuild) from resolving execa at build time,
* which is necessary for Cloudflare Workers where execa's transitive deps
* (npm-run-path → unicorn-magic) use Node-only conditional exports.
*/
export declare function getExeca(): Promise<typeof execaType>;
//# sourceMappingURL=execa.d.ts.map