UNPKG

@mastra/core

Version:

Mastra is a framework for building AI-powered applications and agents with a modern TypeScript stack.

15 lines 664 B
/** * @mastra/core/auth/ee * * Enterprise authentication capabilities for Mastra. * This code is licensed under the Mastra Enterprise License - see ee/LICENSE. * * @license Mastra Enterprise License - see ee/LICENSE * @packageDocumentation */ export * from './interfaces/index.js'; export * from './capabilities.js'; export { validateLicense, isLicenseValid, isEELicenseValid, isFeatureEnabled, isDevEnvironment, isEEEnabled, type LicenseInfo, } from './license.js'; export { checkFGA, requireFGA, FGADeniedError, type CheckFGAOptions, type RequireFGAOptions } from './fga-check.js'; export * from './defaults/index.js'; //# sourceMappingURL=index.d.ts.map