@mastra/core
Version:
Mastra is a framework for building AI-powered applications and agents with a modern TypeScript stack.
13 lines • 520 B
TypeScript
/**
* Authentication Interfaces
*
* These interfaces define the contracts for authentication features.
* For enterprise features (RBAC, ACL), see `@mastra/core/auth/ee`.
*
* @packageDocumentation
*/
export type { User, IUserProvider } from './user.js';
export type { Session, ISessionProvider } from './session.js';
export type { SSOLoginConfig, SSOCallbackResult, ISSOProvider } from './sso.js';
export type { CredentialsResult, ICredentialsProvider } from './credentials.js';
//# sourceMappingURL=index.d.ts.map