@mastra/core
Version:
Mastra is a framework for building AI-powered applications and agents with a modern TypeScript stack.
17 lines • 479 B
TypeScript
/**
* Core feature flags for @mastra/core
*
* This set tracks which features are available in the current version of @mastra/core.
* Dependent packages can check for feature availability to ensure compatibility.
*
* @example
* ```ts
* import { coreFeatures } from "@mastra/core/features"
*
* if (coreFeatures.has('workspaces-v1')) {
* // Workspace features available
* }
* ```
*/
export declare const coreFeatures: Set<string>;
//# sourceMappingURL=index.d.ts.map