@auth/typeorm-adapter
Auth.js / NextAuth.js 的官方 TypeORM 适配器。
安装
npm install @auth/typeorm-adapter typeorm
TypeORMAdapterOptions
这是 TypeORM 适配器选项的接口。
属性
entities?
optional entities: entities;
用于从其创建数据库表的 TypeORM 实体。
实体
type Entities: typeof entities;
entities
const entities: entities = defaultEntities;
TypeORMAdapter()
TypeORMAdapter(dataSource, options?): Adapter
参数
参数 | 类型 |
---|---|
dataSource | string | DataSourceOptions |
options ? | TypeORMAdapterOptions |
返回值
getManager()
getManager(options): Promise<EntityManager>
参数
参数 | 类型 |
---|---|
options | 对象 |
options.dataSource | string | DataSourceOptions |
options.entities | 实体 |
返回值
Promise
<EntityManager
>